File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -18,19 +18,19 @@ jobs:
18
18
19
19
- name : List legacy commit statuses (plural endpoint)
20
20
run : |
21
- sleep 2m
21
+ sleep 1m
22
22
COMMIT_SHA="${{ github.sha }}"
23
23
REPO="${{ github.repository }}"
24
24
echo "Fetching legacy statuses for commit: $COMMIT_SHA in $REPO"
25
25
26
- curl -s - H "Accept: application/vnd.github.v3+json" \
26
+ curl -H "Accept: application/vnd.github.v3+json" \
27
27
-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"
29
29
30
30
31
- curl -s - H "Accept: application/vnd.github.v3+json" \
31
+ curl -H "Accept: application/vnd.github.v3+json" \
32
32
-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"
34
34
35
35
- name : List combined status (legacy statuses summary)
36
36
run : |
You can’t perform that action at this time.
0 commit comments