We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1ae50b commit b493f75Copy full SHA for b493f75
1 file changed
.github/workflows/validate.yaml
@@ -31,9 +31,10 @@ jobs:
31
exit 0
32
33
- name: Remove Label using GitHub CLI
34
- run: gh pr edit ${{ github.event.pull_request.number }} --remove-label run-full-validation"
35
- env:
36
- GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ run: |
+ curl -X DELETE -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \
+ -H "Accept: application/vnd.github.v3+json" \
37
+ "https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.pull_request.number }}/labels/run-full-validation"
38
39
# - name: 'Remove label'
40
# if: always()
0 commit comments