We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9f2014 commit e5a0f50Copy full SHA for e5a0f50
.github/workflows/await-fast-ci.yaml
@@ -34,10 +34,9 @@ jobs:
34
run: python scripts/helpers/poll_quick_ci.py ${{ github.event.number }} restyled
35
- name: Stop on Fail
36
if: ${{ failure() }}
37
- run: |-
38
- curl \
39
- -X POST \
+ run: |
+ gh api \
+ --method POST \
40
+ -H "Accept: application/vnd.github+json" \
41
-H "X-GitHub-Api-Version: 2022-11-28" \
- -H "Accept: application/vnd.github.v3+json" \
42
- -H "Authorization: Bearer ${{ github.token }}" \
43
- "https://api.github.com/repos/$GITHUB_REPOSITORY/actions/runs/${{ github.run_id }}/cancel"
+ /repos/project-chip/connectedhomeip/actions/runs/RUN_ID/cancel
0 commit comments