Skip to content

Commit 5879e9b

Browse files
authored
tools: ignore more paths in GHA CI
PR-URL: #60920 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
1 parent 9877403 commit 5879e9b

File tree

3 files changed

+110
-18
lines changed

3 files changed

+110
-18
lines changed

.github/workflows/build-tarball.yml

Lines changed: 38 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,27 +4,59 @@ on:
44
pull_request:
55
types: [opened, synchronize, reopened, ready_for_review]
66
paths-ignore:
7-
- .mailmap
87
- '**.md'
98
- '**.nix'
10-
- AUTHORS
9+
- eslint.config.mjs
10+
- '**/eslint.config_partial.mjs'
11+
- android-configure
12+
- android-configure.py
13+
- android-patches/**
14+
- benchmarks/**
15+
- codecov.yml
1116
- doc/**
17+
- pyproject.yml
18+
- tsconfig.json
1219
- test/internet/**
13-
- .github/**
20+
- tools/actions/**
21+
- tools/bootstrap/**
22+
- tools/dep_updaters/**
23+
- tools/doc/**
24+
- tools/eslint-rules/**
25+
- tools/eslint/**
26+
- tools/lint-md/**
27+
- typings/**
28+
- vcbuild.bat
29+
- .**
1430
- '!.github/workflows/build-tarball.yml'
1531
push:
1632
branches:
1733
- main
1834
- v[0-9]+.x-staging
1935
- v[0-9]+.x
2036
paths-ignore:
21-
- .mailmap
2237
- '**.md'
2338
- '**.nix'
24-
- AUTHORS
39+
- eslint.config.mjs
40+
- '**/eslint.config_partial.mjs'
41+
- android-configure
42+
- android-configure.py
43+
- android-patches/**
44+
- benchmarks/**
45+
- codecov.yml
2546
- doc/**
47+
- pyproject.yml
48+
- tsconfig.json
2649
- test/internet/**
27-
- .github/**
50+
- tools/actions/**
51+
- tools/bootstrap/**
52+
- tools/dep_updaters/**
53+
- tools/doc/**
54+
- tools/eslint-rules/**
55+
- tools/eslint/**
56+
- tools/lint-md/**
57+
- typings/**
58+
- vcbuild.bat
59+
- .**
2860
- '!.github/workflows/build-tarball.yml'
2961

3062
concurrency:

.github/workflows/test-macos.yml

Lines changed: 38 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,29 @@ on:
44
pull_request:
55
types: [opened, synchronize, reopened, ready_for_review]
66
paths-ignore:
7-
- .mailmap
87
- '**.md'
98
- '**.nix'
10-
- AUTHORS
9+
- eslint.config.mjs
10+
- '**/eslint.config_partial.mjs'
11+
- android-configure
12+
- android-configure.py
13+
- android-patches/**
14+
- benchmarks/**
15+
- codecov.yml
1116
- doc/**
17+
- pyproject.yml
18+
- tsconfig.json
1219
- test/internet/**
13-
- .github/**
20+
- tools/actions/**
21+
- tools/bootstrap/**
22+
- tools/dep_updaters/**
23+
- tools/doc/**
24+
- tools/eslint-rules/**
25+
- tools/eslint/**
26+
- tools/lint-md/**
27+
- typings/**
28+
- vcbuild.bat
29+
- .**
1430
- '!.github/workflows/test-macos.yml'
1531
push:
1632
branches:
@@ -19,13 +35,29 @@ on:
1935
- v[0-9]+.x-staging
2036
- v[0-9]+.x
2137
paths-ignore:
22-
- .mailmap
2338
- '**.md'
2439
- '**.nix'
25-
- AUTHORS
40+
- eslint.config.mjs
41+
- '**/eslint.config_partial.mjs'
42+
- android-configure
43+
- android-configure.py
44+
- android-patches/**
45+
- benchmarks/**
46+
- codecov.yml
2647
- doc/**
48+
- pyproject.yml
49+
- tsconfig.json
2750
- test/internet/**
28-
- .github/**
51+
- tools/actions/**
52+
- tools/bootstrap/**
53+
- tools/dep_updaters/**
54+
- tools/doc/**
55+
- tools/eslint-rules/**
56+
- tools/eslint/**
57+
- tools/lint-md/**
58+
- typings/**
59+
- vcbuild.bat
60+
- .**
2961
- '!.github/workflows/test-macos.yml'
3062

3163
concurrency:

.github/workflows/test-shared.yml

Lines changed: 34 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,14 @@ name: Test Shared libraries
55
on:
66
pull_request:
77
paths-ignore:
8-
- .mailmap
98
- '**.md'
10-
- AUTHORS
9+
- eslint.config.mjs
10+
- '**/eslint.config_partial.mjs'
11+
- android-configure
12+
- android-configure.py
13+
- android-patches/**
14+
- benchmarks/**
15+
- codecov.yml
1116
- deps/ada/**
1217
- deps/brotli/**
1318
- deps/cares/**
@@ -26,8 +31,17 @@ on:
2631
- deps/zlib/**
2732
- deps/zstd/**
2833
- doc/**
34+
- pyproject.yml
35+
- tsconfig.json
2936
- test/internet/**
30-
- .github/**
37+
- tools/**
38+
- '!tools/gyp/**'
39+
- '!tools/nix/**'
40+
- '!tools/v8/**'
41+
- '!tools/v8_gypfiles/**'
42+
- typings/**
43+
- vcbuild.bat
44+
- .**
3145
- '!.github/workflows/test-shared.yml'
3246
types: [opened, synchronize, reopened, ready_for_review]
3347
push:
@@ -37,9 +51,14 @@ on:
3751
- v[0-9]+.x-staging
3852
- v[0-9]+.x
3953
paths-ignore:
40-
- .mailmap
4154
- '**.md'
42-
- AUTHORS
55+
- eslint.config.mjs
56+
- '**/eslint.config_partial.mjs'
57+
- android-configure
58+
- android-configure.py
59+
- android-patches/**
60+
- benchmarks/**
61+
- codecov.yml
4362
- deps/ada/**
4463
- deps/brotli/**
4564
- deps/cares/**
@@ -58,8 +77,17 @@ on:
5877
- deps/zlib/**
5978
- deps/zstd/**
6079
- doc/**
80+
- pyproject.yml
81+
- tsconfig.json
6182
- test/internet/**
62-
- .github/**
83+
- tools/**
84+
- '!tools/gyp/**'
85+
- '!tools/nix/**'
86+
- '!tools/v8/**'
87+
- '!tools/v8_gypfiles/**'
88+
- typings/**
89+
- vcbuild.bat
90+
- .**
6391
- '!.github/workflows/test-shared.yml'
6492

6593
concurrency:

0 commit comments

Comments
 (0)