-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (33 loc) · 1.22 KB
/
checks.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
##########################################################################################
# DESCRIPTION: Perform runner checks.
# AUTHOR: W. Li
# VERSION: 1.0
# CREATED: 2/8/2024
#
# References:
# * https://github.com/actions/setup-python/pull/443#issuecomment-1206776401
# * https://github.com/settings/tokens
##########################################################################################
name: checks
on:
pull_request:
push:
branches: [main]
##########################################################################################
# Jobs
##########################################################################################
jobs:
########################################################################################
# Check the rate limits of the public Github server.
########################################################################################
check-rate-limits:
runs-on: ubuntu-latest
steps:
- name: Show Rate Limits
run: |
curl \
-H "Accept: application/vnd.github.v3+json" \
-H "Authorization: token $TOKEN" \
https://api.github.com/rate_limit
env:
TOKEN: ${{ secrets.GH_GITHUB_COM_TOKEN }}