We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 808b324 + a13665d commit ac879d5Copy full SHA for ac879d5
1 file changed
.github/workflows/check-submodules.yml
@@ -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