We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61fbc39 commit 345be45Copy full SHA for 345be45
1 file changed
.github/workflows/check-actions-rate-limit.yml
@@ -12,3 +12,11 @@ jobs:
12
TOKEN: ${{ github.token }}
13
run: |
14
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
22
+ gh api /rate_limit
0 commit comments