Add simple file-based app for rendering frequent announcement templates #929
Workflow file for this run
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' | |
| on: | |
| pull_request: | |
| paths: | |
| - "**/*.md" | |
| permissions: | |
| pull-requests: read | |
| jobs: | |
| check-markdown-links: | |
| # https://github.com/UmbrellaDocs/action-linkspector/issues/32 | |
| # Upgrade to `ubuntu-latest` when resolved | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Check markdown links | |
| uses: umbrelladocs/action-linkspector@v1 | |
| with: | |
| config_file: .github/linters/.linkspector.yml | |
| fail_on_error: true | |
| filter_mode: nofilter |