Merge pull request 'fix: phase-handler.sh DELETE backlog label uses string 'backlog' not numeric ID (#375)' (#477) from fix/issue-375 into main

This commit is contained in:
johba 2026-03-21 12:14:02 +01:00
commit 00c16d6251

View file

@ -367,7 +367,7 @@ curl -sf -X POST \
curl -sf -X DELETE \ curl -sf -X DELETE \
-H "Authorization: token ${CODEBERG_TOKEN}" \ -H "Authorization: token ${CODEBERG_TOKEN}" \
"${API}/issues/${ISSUE}/labels/backlog" >/dev/null 2>&1 || true "${API}/issues/${ISSUE}/labels/${BACKLOG_LABEL_ID}" >/dev/null 2>&1 || true
CLAIMED=true CLAIMED=true