We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b391d73 commit b7b0640Copy full SHA for b7b0640
1 file changed
.github/workflows/check-merge-labels.yml
@@ -8,11 +8,13 @@ permissions: read-all
8
9
jobs:
10
label_checks:
11
+ name: Check merge labels
12
runs-on: ubuntu-latest
13
steps:
- - id: manually_blocked
14
- if: |
15
- contains(github.event.pull_request.labels.*.name, 'do not merge')
+ - if: contains(github.event.pull_request.labels.*.name, 'do not merge')
+ run: exit 0
16
+
17
18
run: |
19
echo "This is labeled \"Do not merge\"."
20
exit 1
0 commit comments