Improve readability of release permission detection

This commit is contained in:
copilot-swe-agent[bot]
2026-06-02 10:09:00 -07:00
committed by Jeshua Ben Joseph
parent 4abf322a1e
commit 1cf1a20fea
+5
View File
@@ -154,7 +154,12 @@ jobs:
if [ "${GH_RELEASE_EXIT_CODE}" -ne 0 ]; then if [ "${GH_RELEASE_EXIT_CODE}" -ne 0 ]; then
RELEASE_PERMISSION_WARNING="Skipping GitHub release creation for ${{ steps.release.outputs.next_tag }} because the workflow token cannot create releases." RELEASE_PERMISSION_WARNING="Skipping GitHub release creation for ${{ steps.release.outputs.next_tag }} because the workflow token cannot create releases."
IS_PERMISSION_DENIED=false
if [ "${GH_RELEASE_EXIT_CODE}" -eq 4 ] || (echo "${GH_RELEASE_OUTPUT}" | grep -Eq "HTTP 403|Resource not accessible by integration"); then if [ "${GH_RELEASE_EXIT_CODE}" -eq 4 ] || (echo "${GH_RELEASE_OUTPUT}" | grep -Eq "HTTP 403|Resource not accessible by integration"); then
IS_PERMISSION_DENIED=true
fi
if [ "${IS_PERMISSION_DENIED}" = "true" ]; then
echo "::warning::${RELEASE_PERMISSION_WARNING}" echo "::warning::${RELEASE_PERMISSION_WARNING}"
else else
echo "::error::${GH_RELEASE_OUTPUT}" echo "::error::${GH_RELEASE_OUTPUT}"