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 a321855 commit cf594c0Copy full SHA for cf594c0
.github/workflows/link-check.yml
@@ -0,0 +1,20 @@
1
+# This is a basic workflow to help you get started with Actions
2
+
3
+name: Link Check
4
5
+# Controls when the action will run.
6
+on:
7
+ # Triggers the workflow on push or pull request events but only for the master branch
8
+ pull_request:
9
10
+# A workflow run is made up of one or more jobs that can run sequentially or in parallel
11
+jobs:
12
+ markdown-link-check:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: actions/checkout@master
16
+ - uses: gaurav-nelson/github-action-markdown-link-check@v1
17
+ with:
18
+ use-quiet-mode: 'yes'
19
+ use-verbose-mode: 'yes'
20
+ check-modified-files-only: 'yes'
0 commit comments