You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
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.
0 commit comments