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 5440e12 commit e6c3167Copy full SHA for e6c3167
.github/workflows/link-checker.yml
@@ -0,0 +1,13 @@
1
+name: Check Markdown links
2
+
3
+on: push
4
5
+jobs:
6
+ markdown-link-check:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@master
10
+ - uses: gaurav-nelson/github-action-markdown-link-check@v1
11
+ with:
12
+ config-file: 'mlc_config.json'
13
+ continue-on-error: true
mlc_config.json
+{
+ "ignorePatterns": [
+ {
+ "pattern": "^/"
+ }
+ ],
+ "replacementPatterns": [
+ "pattern": ":currentVersion:",
+ "replacement": "latest"
+ ]
+}
0 commit comments