Skip to content

Commit ac879d5

Browse files
authored
Merge pull request #17322 from pieterlexis/warn-on-submodule-update
ci: Add check for builder submodule
2 parents 808b324 + a13665d commit ac879d5

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Check if the builder submodule is modified
2+
on:
3+
pull_request:
4+
branches:
5+
- master
6+
paths:
7+
- 'builder'
8+
9+
permissions:
10+
contents: read
11+
12+
jobs:
13+
audit:
14+
runs-on: ubuntu-latest
15+
name: Builder submodule check
16+
steps:
17+
- run: |
18+
echo "The builder/ submodule was modified in this PR" >> "${GITHUB_STEP_SUMMARY}"
19+
exit 1

0 commit comments

Comments
 (0)