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

pull/6711/head
Frank Elsinga 3 months ago committed by GitHub
parent 31d2417dde
commit 7306e7038a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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

Loading…
Cancel
Save