Skip to content

Commit 38f9381

Browse files
improve action
1 parent d3e20a5 commit 38f9381

File tree

1 file changed

+54
-22
lines changed

1 file changed

+54
-22
lines changed

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

+54-22
Original file line numberDiff line numberDiff line change
@@ -18,36 +18,68 @@ permissions:
1818
jobs:
1919
check-label:
2020
runs-on: ubuntu-latest
21+
if:
22+
${{ contains(github.event.pull_request.labels.*.name,
23+
'sl-require-admin-action') }}
2124
steps:
2225
- name: Check for sl-require-admin-action label
23-
run: |
24-
if contains(${{github.event.pull_request.labels.*.name}} , 'sl-require-admin-action'); then
25-
echo "The sl-require-admin-action label is present. Failing the job."
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 }}
28-
fi
29-
exit 1
30-
else
31-
echo "The sl-require-admin-action label is not present. Passing the job."
32-
fi
26+
run:
27+
echo "The sl-require-admin-action label is present. Failing
28+
the job."
3329
env:
3430
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
31+
- name: Add comment to PR
32+
uses: actions/github-script@v6
33+
with:
34+
script: |
35+
const prNumber = context.payload.pull_request.number;
36+
const comment = "The CI failure for this job is normal. An admin must do the merge.";
37+
const { data: comments } = await github.issues.listComments({
38+
owner: context.repo.owner,
39+
repo: context.repo.repo,
40+
issue_number: prNumber,
41+
});
42+
const existingComment = comments.find(c => c.body.includes(comment));
43+
if (!existingComment) {
44+
await github.issues.createComment({
45+
owner: context.repo.owner,
46+
repo: context.repo.repo,
47+
issue_number: prNumber,
48+
body: comment,
49+
});
50+
}
51+
process.exit(1);
3552
3653
prevent-label-removal:
3754
runs-on: ubuntu-latest
55+
if:
56+
github.event.action == 'unlabeled' && github.event.label.name ==
57+
'sl-require-admin-action'
3858
steps:
3959
- name: Prevent sl-require-admin-action label removal
40-
if: github.event.action == 'unlabeled'
41-
run: |
42-
REMOVED_LABEL=${{ github.event.label.name }}
43-
if [ "$REMOVED_LABEL" == "sl-require-admin-action" ]; then
44-
echo "The sl-require-admin-action label cannot be removed. Failing the job."
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 }}
47-
fi
48-
exit 1
49-
else
50-
echo "A different label was removed. Passing the job."
51-
fi
60+
run:
61+
echo "The sl-require-admin-action label cannot be removed.
62+
Failing the job."
5263
env:
5364
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
65+
- name: Add comment to PR
66+
uses: actions/github-script@v6
67+
with:
68+
script: |
69+
const prNumber = context.payload.pull_request.number;
70+
const comment = "The sl-require-admin-action label cannot be removed once it has been added.";
71+
const { data: comments } = await github.issues.listComments({
72+
owner: context.repo.owner,
73+
repo: context.repo.repo,
74+
issue_number: prNumber,
75+
});
76+
const existingComment = comments.find(c => c.body.includes(comment));
77+
if (!existingComment) {
78+
await github.issues.createComment({
79+
owner: context.repo.owner,
80+
repo: context.repo.repo,
81+
issue_number: prNumber,
82+
body: comment,
83+
});
84+
}
85+
process.exit(1);

0 commit comments

Comments
 (0)