This repository has been archived by the owner on Nov 21, 2023. It is now read-only.
Broken Links Checker #440
This file contains 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: Broken Links Checker | |
on: | |
schedule: | |
- cron: "0 5 * * 0" | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
linkChecker: | |
runs-on: ubuntu-latest | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Configure broken links checker | |
run: | | |
mkdir -p ./target | |
echo '{ "aliveStatusCodes": [429, 200], "ignorePatterns": [{"pattern": "^https?://(www.)?opensource.org"}] }' > ./target/broken_links_checker.json | |
- uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
with: | |
use-quiet-mode: 'yes' | |
use-verbose-mode: 'yes' | |
config-file: ./target/broken_links_checker.json |