We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56d039c commit ff5e486Copy full SHA for ff5e486
.github/workflows/dead-link-checker.yml
@@ -0,0 +1,20 @@
1
+name: Link checker
2
+
3
+on:
4
+ pull_request:
5
+ push:
6
+ schedule:
7
+ - cron: "0 5 * * *"
8
9
+jobs:
10
+ CheckDeadLinks:
11
+ runs-on: ubuntu-latest
12
+ timeout-minutes: 60
13
+ steps:
14
+ - uses: actions/checkout@v3
15
+ - uses: gaurav-nelson/github-action-markdown-link-check@v1
16
+ with:
17
+ use-quiet-mode: 'no'
18
+ use-verbose-mode: 'yes'
19
+ folder-path: '../'
20
+ config-file: '.github/workflows/dlc.json'
.github/workflows/dlc.json
@@ -0,0 +1,11 @@
+{
+ "timeout": "10s",
+ "retryOn429": true,
+ "retryCount": 10,
+ "fallbackRetryDelay": "1000s",
+ "aliveStatusCodes": [
+ 200,
+ 401,
+ 403
+ ]
+}
0 commit comments