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 c3dde8f commit c60bbeeCopy full SHA for c60bbee
.github/workflows/markdown-link-checker.yml
@@ -6,11 +6,18 @@ jobs:
6
markdown-link-check:
7
runs-on: ubuntu-latest
8
steps:
9
- - uses: actions/checkout@master
10
- - uses: gaurav-nelson/github-action-markdown-link-check@v1
+ - name: Checkout
+ uses: actions/checkout@master
11
+
12
+ - name: Check for 404s in modified files
13
+ id: check_404_in_modified_files
14
+ uses: gaurav-nelson/github-action-markdown-link-check@v1
15
with:
16
base-branch: 'main'
17
use-quiet-mode: 'yes'
18
check-modified-files-only: 'yes'
19
file-extension: '.mdx'
- config-file: '.link_checker_config.json'
20
+ config-file: '.link_checker_config.json'
21
22
+ - name: Write output to txt file
23
+ run: echo "{{ steps.check_404_in_modified_files.outputs.*}}"
0 commit comments