Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 5d8116a

Browse files
committedJan 28, 2025·
Simplfy require admin workflow
1 parent d535811 commit 5d8116a

File tree

1 file changed

+5
-10
lines changed

1 file changed

+5
-10
lines changed
 

‎.github/workflows/silabs-require-admin-action-check.yaml

+5-10
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,10 @@ jobs:
2121
steps:
2222
- name: Check for sl-require-admin-action label
2323
run: |
24-
PR_NUMBER=${{ github.event.pull_request.number }}
25-
LABELS=$(gh pr view $PR_NUMBER --repo ${{ github.repository }} --json labels --jq '.labels[].name')
26-
if echo "$LABELS" | grep -q "sl-require-admin-action"; then
24+
if contains(github.event.pull_request.labels.*.name, 'sl-require-admin-action'); then
2725
echo "The sl-require-admin-action label is present. Failing the job."
28-
COMMENTS=$(gh pr view $PR_NUMBER --repo ${{ github.repository }} --json comments --jq '.comments[].body')
29-
if ! echo "$COMMENTS" | grep -q "The CI failure for this job is normal. An admin must do the merge."; then
30-
gh pr comment $PR_NUMBER --repo ${{ github.repository }} --body "The CI failure for this job is normal. An admin must do the merge."
26+
if ! contains(github.event.pull_request.comments.*.body, 'The CI failure for this job is normal. An admin must do the merge.'); then
27+
echo "The CI failure for this job is normal. An admin must do the merge." | gh pr comment ${{ github.event.pull_request.number }} --repo ${{ github.repository }}
3128
fi
3229
exit 1
3330
else
@@ -42,13 +39,11 @@ jobs:
4239
- name: Prevent sl-require-admin-action label removal
4340
if: github.event.action == 'unlabeled'
4441
run: |
45-
PR_NUMBER=${{ github.event.pull_request.number }}
4642
REMOVED_LABEL=${{ github.event.label.name }}
4743
if [ "$REMOVED_LABEL" == "sl-require-admin-action" ]; then
4844
echo "The sl-require-admin-action label cannot be removed. Failing the job."
49-
COMMENTS=$(gh pr view $PR_NUMBER --repo ${{ github.repository }} --json comments --jq '.comments[].body')
50-
if ! echo "$COMMENTS" | grep -q "The sl-require-admin-action label cannot be removed once it has been added."; then
51-
gh pr comment $PR_NUMBER --repo ${{ github.repository }} --body "The sl-require-admin-action label cannot be removed once it has been added."
45+
if ! contains(github.event.pull_request.comments.*.body, 'The sl-require-admin-action label cannot be removed once it has been added.'); then
46+
echo "The sl-require-admin-action label cannot be removed once it has been added." | gh pr comment ${{ github.event.pull_request.number }} --repo ${{ github.repository }}
5247
fi
5348
exit 1
5449
else

0 commit comments

Comments
 (0)
Please sign in to comment.