chore(ci): fix a missing --repo in the labeling automation (#6735)

This commit is contained in:
Frank Elsinga 2026-01-14 16:49:37 +01:00 committed by GitHub
parent 31d2417dde
commit 7306e7038a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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