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 7bdcd35 commit 2d1d5b1Copy full SHA for 2d1d5b1
.github/workflows/check_links.yml
@@ -0,0 +1,24 @@
1
+name: check_links
2
+on:
3
+ pull_request:
4
+ branches:
5
+ - main
6
+ push:
7
8
9
+ # TODO: make this a cron action
10
+ # runs every monday at 9 am
11
+ # schedule:
12
+ # - cron: "0 9 * * 1"
13
+permissions: read-all
14
+jobs:
15
+ check-links:
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - uses: actions/checkout@master
19
+ - uses: gaurav-nelson/github-action-markdown-link-check@v1
20
+ with:
21
+ use-quiet-mode: 'yes'
22
+ use-verbose-mode: 'yes'
23
+ config-file: '.github/workflows/markdown.links.config.json'
24
+ folder-path: 'docs/'
.github/workflows/markdown.links.config.json
@@ -0,0 +1,7 @@
+{
+ "ignorePatterns": [
+ {
+ "pattern": "^tags/#"
+ }
+ ]
+}
0 commit comments