We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 174a899 commit bbfc459Copy full SHA for bbfc459
.github/workflows/do_not_merge.yml
@@ -9,12 +9,13 @@ on:
9
10
jobs:
11
do-not-merge:
12
- if: ${{ contains(github.event.*.labels.*.name, 'DNM') }}
+ if: ${{ contains(github.event.*.labels.*.name, 'DNM') ||
13
+ contains(github.event.*.labels.*.name, 'DNM (manifest)') }}
14
name: Prevent Merging
15
runs-on: ubuntu-24.04
16
steps:
17
- name: Check for label
18
run: |
- echo "Pull request is labeled as 'DNM'."
19
+ echo "Pull request is labeled as 'DNM' or 'DNM (manifest)'."
20
echo "This workflow fails so that the pull request cannot be merged."
21
exit 1
0 commit comments