File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -13,10 +13,18 @@ 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
+
16
23
- name : Link Checker
17
24
id : lychee
18
25
uses : lycheeverse/lychee-action@1d97d84f0bc547f7b25f4c2170d87d810dc2fb2c
19
26
with :
27
+ token : ${{ steps.generate-token.outputs.token }}
20
28
fail : false
21
29
args : " --verbose './docs/**/*.rst' './docs/**/*.inc' './lib/**/*.py'"
22
30
Original file line number Diff line number Diff line change @@ -32,6 +32,9 @@ https://github.com/your-user-name/iris
32
32
# problem with bad certificate (review sometime?)
33
33
https://scitools.github.com/cartopy
34
34
35
+ # returns 403 when accessed from GitHub Actions
36
+ https://stackoverflow.com
37
+
35
38
# legacy ref in whatsnew/3.0.rst
36
39
https://stickler-ci.com
37
40
You can’t perform that action at this time.
0 commit comments