Merge pull request #417 from smallstep/carl/core-concepts #217
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Check Markdown links in merges | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| markdown-link-check: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 60 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
| with: | |
| file-extension: '.mdx' | |
| use-quiet-mode: 'yes' | |
| config-file: '.github/mdl.config.json' |