We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee73b16 commit 20a3167Copy full SHA for 20a3167
.github/workflows/check-pull-requests-that-modify-meta-files.yml
@@ -0,0 +1,22 @@
1
+name: 'Check pull requests that modify meta files'
2
+
3
+on:
4
+ pull_request:
5
+ paths:
6
+ - '.github/workflows/auto-approve-dependabot-pull-requests-targeting-main.yml'
7
+ - '.github/workflows/check-pull-requests-that-modify-meta-files.yml'
8
+ - '.github/dependabot.yml'
9
+ - '.github/scripts/exit-1-if-result-failure-was-passed.sh'
10
+ - '.editorconfig'
11
+ - '.gitignore'
12
+ - 'README.md'
13
+ - 'CHANGELOG.md'
14
15
+jobs:
16
+ wait-for-required-jobs:
17
+ name: Wait for jobs that are required for pull requests to be merge-able
18
+ runs-on: ubuntu-latest
19
+ if: always()
20
+ steps:
21
+ - name: Exit with success
22
+ run: exit 0
0 commit comments