Skip to content

Commit 98ba9f8

Browse files
authored
Merge branch 'developerproductivity:main' into main
2 parents e912292 + 8d8b3d0 commit 98ba9f8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Diff for: .github/workflows/list-status.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,19 @@ jobs:
1818
1919
- name: List legacy commit statuses (plural endpoint)
2020
run: |
21-
sleep 2m
21+
sleep 1m
2222
COMMIT_SHA="${{ github.sha }}"
2323
REPO="${{ github.repository }}"
2424
echo "Fetching legacy statuses for commit: $COMMIT_SHA in $REPO"
2525
26-
curl -s -H "Accept: application/vnd.github.v3+json" \
26+
curl -H "Accept: application/vnd.github.v3+json" \
2727
-H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
28-
"https://api.github.com/repos/$REPO/commits/$COMMIT_SHA/statuses" | jq .
28+
"https://api.github.com/repos/$REPO/commits/$COMMIT_SHA/statuses"
2929
3030
31-
curl -s -H "Accept: application/vnd.github.v3+json" \
31+
curl -H "Accept: application/vnd.github.v3+json" \
3232
-H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
33-
"https://api.github.com/repos/$REPO/commits/$COMMIT_SHA/check-runs" | jq .
33+
"https://api.github.com/repos/$REPO/commits/$COMMIT_SHA/check-runs"
3434
3535
- name: List combined status (legacy statuses summary)
3636
run: |

0 commit comments

Comments
 (0)