-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update * Update BlockPRMerge.yml * Update BlockPRMerge.yml * Update BlockPRMerge.yml * Update BlockPRMerge.yml * Update AddIssueComment.yml * Update BlockPRMerge.yml
- Loading branch information
1 parent
a3fb697
commit f321a93
Showing
3 changed files
with
24 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: Block PR merging on "do-not-merge" label | ||
|
||
on: | ||
pull_request_target: | ||
types: [labeled, unlabeled] | ||
|
||
jobs: | ||
block-merge: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check "do-not-merge" label | ||
uses: actions/github-script@v7 | ||
with: | ||
script: | | ||
const labels = context.payload.pull_request.labels.map(label => label.name); | ||
if (labels.includes("do-not-merge")) { | ||
console.log("It is not allowed to merge a PR with 'do-not-merge' label."); | ||
process.exit(1); // Exit with a non-zero status code to block merge | ||
} else { | ||
console.log("It is allowed to merge a PR without 'do-not-merge' label."); | ||
} |