From 81f9837e378a09c6eaf383c40c7d7b2130693f59 Mon Sep 17 00:00:00 2001 From: Octol1ttle Date: Mon, 16 Mar 2026 16:45:18 +0500 Subject: [PATCH] Update blocked/blocking workflow to match new labels Signed-off-by: Octol1ttle --- .github/workflows/blocked-prs.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/blocked-prs.yml b/.github/workflows/blocked-prs.yml index fa00646e2..784bf4f6e 100644 --- a/.github/workflows/blocked-prs.yml +++ b/.github/workflows/blocked-prs.yml @@ -157,7 +157,7 @@ jobs: env: GH_TOKEN: ${{ steps.generate-token.outputs.token }} run: | - gh -R ${{ github.repository }} issue edit --add-label 'blocked' "$PR_NUMBER" + gh -R ${{ github.repository }} issue edit --add-label 'status: blocked' "$PR_NUMBER" - name: Remove 'blocked' Label if All Dependencies Are Merged id: unlabel_blocked @@ -177,7 +177,7 @@ jobs: BLOCKING_ISSUES: ${{ steps.blocking_data.outputs.current_blocking }} run: | while read -r pr ; do - gh -R ${{ github.repository }} issue edit --add-label 'blocking' "$pr" || true + gh -R ${{ github.repository }} issue edit --add-label 'status: blocking' "$pr" || true done < <(jq -c '.[]' <<< "$BLOCKING_ISSUES") - name: Apply Blocking PR Status Check