Skip to content

Commit 345be45

Browse files
committed
More rate limit testing
1 parent 61fbc39 commit 345be45

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

.github/workflows/check-actions-rate-limit.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,11 @@ jobs:
1212
TOKEN: ${{ github.token }}
1313
run: |
1414
curl -v --no-progress-meter --header "Authorization: Bearer $TOKEN" https://api.github.com/rate_limit
15+
- name: Check rate limit (no auth)
16+
run: |
17+
curl -v --no-progress-meter https://api.github.com/rate_limit
18+
- name: Check rate limit (cli)
19+
env:
20+
GH_TOKEN: ${{ github.token }}
21+
run: |
22+
gh api /rate_limit

0 commit comments

Comments
 (0)