{App Service} az webapp update
/az appservice plan update
: Add new parameter --elastic-web-app-scale-limit
and scaling parameter options
#207
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."); | |
} |