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 bfa212d + 7278578 commit 3f66961Copy full SHA for 3f66961
.github/workflows/linkcheck.yml
@@ -3,17 +3,20 @@ name: Check External links
3
on:
4
push:
5
branches:
6
- - master
+ - master
7
pull_request:
8
- tags:
9
- - 'check-links'
+ types: [labeled]
10
11
jobs:
12
markdown-link-check:
+ if: ${{ contains(github.event.pull_request.labels.*.name, 'check-links') }}
13
runs-on: ubuntu-latest
14
steps:
15
- - uses: actions/checkout@master
16
- - uses: gaurav-nelson/github-action-markdown-link-check@v1
+ - name: Checkout code
+ uses: actions/checkout@v2
17
+
18
+ - name: Check markdown links
19
+ uses: gaurav-nelson/github-action-markdown-link-check@v1
20
with:
21
file-extension: .mdx
22
use-quiet-mode: yes
0 commit comments