Updated api version of providerhub cli to 2024-04-01-preview #1036
Workflow file for this run
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
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."); | |
} |