sigs.k8s.io/cluster-api@v1.7.1/.github/workflows/weekly-md-link-check.yaml (about) 1 name: Weekly check all Markdown links 2 3 on: 4 schedule: 5 # Cron for every Monday at 12:00 UTC. 6 - cron: "0 12 * * 1" 7 8 # Remove all permissions from GITHUB_TOKEN except metadata. 9 permissions: {} 10 11 jobs: 12 markdown-link-check: 13 name: Broken Links 14 strategy: 15 fail-fast: false 16 matrix: 17 branch: [ main, release-1.6, release-1.5 ] 18 runs-on: ubuntu-latest 19 steps: 20 - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # tag=v4.1.2 21 with: 22 ref: ${{ matrix.branch }} 23 - uses: gaurav-nelson/github-action-markdown-link-check@5c5dfc0ac2e225883c0e5f03a85311ec2830d368 # tag=v1 24 with: 25 use-quiet-mode: 'yes' 26 config-file: .markdownlinkcheck.json