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.
2 parents 3d51907 + 9ef2afd commit 03f62b1Copy full SHA for 03f62b1
.github/workflows/lint-docs.yaml renamed to .github/workflows/lint-docs-pr.yaml
@@ -1,4 +1,4 @@
1
-name: Check Markdown links
+name: Check PR Markdown links
2
3
on:
4
pull_request:
@@ -19,3 +19,4 @@ jobs:
19
with:
20
use-quiet-mode: 'yes'
21
config-file: .markdownlinkcheck.json
22
+ check-modified-files-only: 'yes'
.github/workflows/lint-docs-weekly.yml
@@ -0,0 +1,19 @@
+name: Weekly check all Markdown links
+
+on:
+ schedule:
5
+ - cron: "0 12 * * 4"
6
7
+# Remove all permissions from GITHUB_TOKEN except metadata.
8
+permissions: {}
9
10
+jobs:
11
+ markdown-link-check:
12
+ name: Broken Links
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: actions/checkout@v3
16
+ - uses: gaurav-nelson/github-action-markdown-link-check@v1
17
+ with:
18
+ use-quiet-mode: 'yes'
+ config-file: .markdownlinkcheck.json
0 commit comments