From 7306e7038ac0a436b582afb0d6c0741fc2929c64 Mon Sep 17 00:00:00 2001 From: Frank Elsinga Date: Wed, 14 Jan 2026 16:49:37 +0100 Subject: [PATCH] chore(ci): fix a missing `--repo` in the labeling automation (#6735) --- .github/workflows/mark-as-draft-on-requesting-changes.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/mark-as-draft-on-requesting-changes.yml b/.github/workflows/mark-as-draft-on-requesting-changes.yml index 99e8384e4..61407184c 100644 --- a/.github/workflows/mark-as-draft-on-requesting-changes.yml +++ b/.github/workflows/mark-as-draft-on-requesting-changes.yml @@ -41,7 +41,10 @@ jobs: env: GH_TOKEN: ${{ github.token }} run: | - gh pr ready "${{ github.event.pull_request.number }}" --undo || true + gh pr ready "${{ github.event.pull_request.number }}" \ + --repo "${{ github.repository }}" \ + --undo || true + # || true to ignore the case where the pr is already a draft ready-for-review: runs-on: ubuntu-latest