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 7540150 commit 8097cbfCopy full SHA for 8097cbf
.github/workflows/brokenLinkCheck.yml
@@ -3,16 +3,17 @@ name: Check for broken links
3
# https://github.blog/2020-08-03-github-actions-improvements-for-fork-and-pull-request-workflows/
4
5
on:
6
- push:
7
- branches:
8
- - main
+ pull_request:
9
10
jobs:
11
-
12
markdown-link-check:
13
14
name: Check for broken links
15
runs-on: ubuntu-latest
16
steps:
17
- - uses: actions/checkout@master
18
- - uses: gaurav-nelson/github-action-markdown-link-check@v1
+ - uses: actions/checkout@v4
+ - name: Run linkspector
+ uses: umbrelladocs/action-linkspector@v1
+ with:
+ github_token: ${{ secrets.github_token }}
+ reporter: github-pr-review
19
+ fail_level: any
0 commit comments