Weekly check all Markdown links #38
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: Weekly check all Markdown links | |
on: | |
schedule: | |
# Cron for every Monday at 12:00 UTC. | |
- cron: "0 12 * * 1" | |
# Remove all permissions from GITHUB_TOKEN except metadata. | |
permissions: {} | |
jobs: | |
markdown-link-check: | |
name: Broken Links | |
strategy: | |
fail-fast: false | |
matrix: | |
branch: [ main, release-1.6, release-1.5 ] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # tag=v4.1.1 | |
with: | |
ref: ${{ matrix.branch }} | |
- uses: gaurav-nelson/github-action-markdown-link-check@5c5dfc0ac2e225883c0e5f03a85311ec2830d368 # tag=v1 | |
with: | |
use-quiet-mode: 'yes' | |
config-file: .markdownlinkcheck.json |