Skip to content

Commit e292271

Browse files
aduh95danielleadams
authored andcommitted
tools: ignore unrelated workflow changes in slow Actions tests
Changes in the workflow files never affect the node binary, running build tasks seems unnecessary. Refs: #40928 PR-URL: #40990 Reviewed-By: Mohammed Keyvanzadeh <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
1 parent db30bc9 commit e292271

File tree

4 files changed

+16
-0
lines changed

4 files changed

+16
-0
lines changed

.github/workflows/build-tarball.yml

+4
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ on:
88
- '**.md'
99
- 'AUTHORS'
1010
- 'doc/**'
11+
- .github/**
12+
- '!.github/workflows/build-tarball.yml'
1113
push:
1214
branches:
1315
- master
@@ -19,6 +21,8 @@ on:
1921
- '**.md'
2022
- 'AUTHORS'
2123
- 'doc/**'
24+
- .github/**
25+
- '!.github/workflows/build-tarball.yml'
2226

2327
env:
2428
FLAKY_TESTS: dontcare

.github/workflows/build-windows.yml

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ on:
44
pull_request:
55
paths-ignore:
66
- "README.md"
7+
- .github/**
8+
- '!.github/workflows/build-windows.yml'
79
types: [opened, synchronize, reopened, ready_for_review]
810
push:
911
branches:
@@ -14,6 +16,8 @@ on:
1416
- v[0-9]+.x
1517
paths-ignore:
1618
- "README.md"
19+
- .github/**
20+
- '!.github/workflows/build-windows.yml'
1721

1822
env:
1923
PYTHON_VERSION: '3.10'

.github/workflows/coverage-linux.yml

+4
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ on:
88
- 'benchmark/**'
99
- 'deps/**'
1010
- 'doc/**'
11+
- .github/**
12+
- '!.github/workflows/coverage-linux.yml'
1113
push:
1214
branches:
1315
- master
@@ -17,6 +19,8 @@ on:
1719
- 'benchmark/**'
1820
- 'deps/**'
1921
- 'doc/**'
22+
- .github/**
23+
- '!.github/workflows/coverage-linux.yml'
2024

2125
env:
2226
PYTHON_VERSION: '3.10'

.github/workflows/coverage-windows.yml

+4
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ on:
99
- 'deps/**'
1010
- 'doc/**'
1111
- 'tools/**'
12+
- .github/**
13+
- '!.github/workflows/coverage-windows.yml'
1214
push:
1315
branches:
1416
- master
@@ -19,6 +21,8 @@ on:
1921
- 'deps/**'
2022
- 'doc/**'
2123
- 'tools/**'
24+
- .github/**
25+
- '!.github/workflows/coverage-windows.yml'
2226

2327
env:
2428
PYTHON_VERSION: '3.10'

0 commit comments

Comments
 (0)