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 fc26358 commit c188f97Copy full SHA for c188f97
.github/workflows/merge-to-main.yml
@@ -26,6 +26,14 @@ jobs:
26
using a feature branch first, and only merge into the main
27
branch when the code complete and ready to be released.
28
29
+ **Add the 'main-merge-ack' label to your PR to confirm
30
+ merging into the main branch is intended.**
31
+
32
- name: Label checker
- if: !contains( github.event.pull_request.labels.*.name, 'main-merge-ack')
- run: exit 1
33
+ if: "!contains( github.event.pull_request.labels.*.name, 'main-merge-ack')"
34
+ run: |
35
+ echo Missing 'main-merge-ack' label. Read the comment about merging to master in your PR for more information.
36
+ exit 1
37
38
+ - name: Success
39
+ run: exit 0
0 commit comments