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 a6c72d9 commit 40e4b1eCopy full SHA for 40e4b1e
.github/workflows/MarkdwonLinksCheck.yml
@@ -0,0 +1,23 @@
1
+name: Check Markdown Links
2
+# runs every monday at 9 am
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ paths:
8
+ - '**.md'
9
+ pull_request:
10
11
12
+ # Allows you to run this workflow manually from the Actions tab
13
+ workflow_dispatch:
14
+jobs:
15
+ linkinator:
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - uses: actions/checkout@v3
19
+ - uses: JustinBeckwith/linkinator-action@v1
20
+ with:
21
+ paths: '*.md ./CI/**/*.md, ./variants/**/*.md, ./libraries/**/*.md'
22
+ verbosity: 'INFO'
23
+ skip: 'www.st.com'
0 commit comments