File tree 2 files changed +6
-9
lines changed
2 files changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -13,20 +13,13 @@ jobs:
13
13
steps :
14
14
- uses : actions/checkout@v4
15
15
16
- - name : " Generate token"
17
- uses : actions/create-github-app-token@v2
18
- id : generate-token
19
- with :
20
- app-id : ${{ secrets.AUTH_APP_ID }}
21
- private-key : ${{ secrets.AUTH_APP_PRIVATE_KEY }}
22
-
23
16
- name : Link Checker
24
17
id : lychee
25
18
uses : lycheeverse/lychee-action@1d97d84f0bc547f7b25f4c2170d87d810dc2fb2c
26
19
with :
27
- token : ${{ steps.generate-token.outputs.token }}
20
+ token : ${{secrets.GITHUB_TOKEN }}
28
21
fail : false
29
- args : " --verbose './docs/**/*.rst' './docs/**/*.inc' './lib/**/*.py'"
22
+ args : " --verbose --max-concurrency 1 './docs/**/*.rst' './docs/**/*.inc' './lib/**/*.py'"
30
23
31
24
- name : Create Issue From File
32
25
if : steps.lychee.outputs.exit_code != 0
Original file line number Diff line number Diff line change @@ -26,6 +26,10 @@ https://geoport.whoi.edu:80/thredds/
26
26
# catch (at least) github userids, of which many in whatsnews, too many --> "too many requests" failures
27
27
https://github.com/[^/]*$
28
28
29
+ # GitHub seems especially keen to rate-limit "blob" URLs.
30
+ # (maybe because these are especially associated with abuse?)
31
+ https://github.com/[^/]*/[^/]*/blob/.*
32
+
29
33
# nonfunctional example, used in docs/src/developers_guide/gitwash/development_workflow.rst
30
34
https://github.com/your-user-name/iris
31
35
You can’t perform that action at this time.
0 commit comments