Skip to content

Commit 20a3167

Browse files
committed
add workflow that check pull requests that modify meta files
1 parent ee73b16 commit 20a3167

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)