Sync csa branch with main #217
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: Check for sl-require-admin-action label | |
on: | |
pull_request: | |
branches: | |
- main | |
- release_* | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- labeled | |
- unlabeled | |
permissions: | |
pull-requests: write | |
jobs: | |
check-label: | |
name: Fail CI if sl-require-admin-action label is present | |
runs-on: ubuntu-latest | |
if: | |
${{ contains(github.event.pull_request.labels.*.name, | |
'sl-require-admin-action') }} | |
steps: | |
- name: Add comment to PR | |
uses: actions/github-script@v7 | |
with: | |
script: | | |
const prNumber = context.payload.pull_request.number; | |
const comment = "The check for `sl-require-admin-action` label CI failure for this job is normal. An admin must do the merge."; | |
const { data: comments } = await github.rest.issues.listComments({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
issue_number: prNumber, | |
}); | |
const existingComment = comments.find(c => c.body.includes(comment)); | |
if (!existingComment) { | |
await github.rest.issues.createComment({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
issue_number: prNumber, | |
body: comment, | |
}); | |
} | |
- name: Trigger CI failure | |
run: | | |
echo "The sl-require-admin-action label is present. Failing the job." | |
process.exit(1); | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
prevent-label-removal: | |
name: Prevent sl-require-admin-action label from being removed | |
runs-on: ubuntu-latest | |
if: | |
github.event.action == 'unlabeled' && github.event.label.name == | |
'sl-require-admin-action' | |
steps: | |
- name: Add comment to PR | |
uses: actions/github-script@v7 | |
with: | |
script: | | |
const prNumber = context.payload.pull_request.number; | |
const comment = "The `sl-require-admin-action` label cannot be removed once it has been added."; | |
const { data: comments } = await github.rest.issues.listComments({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
issue_number: prNumber, | |
}); | |
const existingComment = comments.find(c => c.body.includes(comment)); | |
if (!existingComment) { | |
await github.rest.issues.createComment({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
issue_number: prNumber, | |
body: comment, | |
}); | |
} | |
- name: Re-add sl-require-admin-action label | |
uses: actions/github-script@v7 | |
with: | |
script: | | |
const prNumber = context.payload.pull_request.number; | |
await github.rest.issues.addLabels({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
issue_number: prNumber, | |
labels: ['sl-require-admin-action'], | |
}); | |
- name: Trigger CI failure | |
run: | | |
echo "The sl-require-admin-action label cannot be removed. Failing the job." | |
process.exit(1); | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |