Skip to content

Commit 72e4e3f

Browse files
authored
Disable current workflows for builder (#4287)
* Disable current workflows for builder Signed-off-by: Juraci Paixão Kröhling <[email protected]> * Re-enable codeql for builder Signed-off-by: Juraci Paixão Kröhling <[email protected]>
1 parent 87405dd commit 72e4e3f

6 files changed

+20
-0
lines changed

.github/workflows/api-compatibility.yml

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
name: "Inform Incompatible PRs"
88
on:
99
pull_request:
10+
paths-ignore:
11+
- 'builder/**'
1012
branches:
1113
- main
1214

.github/workflows/build-and-test-windows.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,13 @@ name: build-and-test-windows
22
on:
33
push:
44
branches: [ main ]
5+
paths-ignore:
6+
- 'builder/**'
57
tags:
68
- 'v[0-9]+.[0-9]+.[0-9]+*'
79
pull_request:
10+
paths-ignore:
11+
- 'builder/**'
812

913
jobs:
1014
windows-unittest:

.github/workflows/build-and-test.yml

+4
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,13 @@ name: build-and-test
22
on:
33
push:
44
branches: [main]
5+
paths-ignore:
6+
- 'builder/**'
57
tags:
68
- "v[0-9]+.[0-9]+.[0-9]+*"
79
pull_request:
10+
paths-ignore:
11+
- 'builder/**'
812

913
jobs:
1014
setup-environment:

.github/workflows/check-links.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@ name: check-links
22
on:
33
push:
44
branches: [ main ]
5+
paths-ignore:
6+
- 'builder/**'
57
pull_request:
8+
paths-ignore:
9+
- 'builder/**'
610

711
jobs:
812
check-links:

.github/workflows/contrib-tests.yml

+4
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,13 @@ name: contrib-tests
22
on:
33
push:
44
branches: [ main ]
5+
paths-ignore:
6+
- 'builder/**'
57
tags:
68
- v[0-9]+.[0-9]+.[0-9]+.*
79
pull_request:
10+
paths-ignore:
11+
- 'builder/**'
812

913
jobs:
1014
contrib_tests:

.github/workflows/dependabot.yml

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ name: Dependabot-Tidier
33
on:
44
pull_request:
55
types: [ labeled ]
6+
paths-ignore:
7+
- 'builder/**'
68

79
jobs:
810
mod_tidier:

0 commit comments

Comments
 (0)