--- name: Periodic on: schedule: - cron: "0 0 * * 0" permissions: {} jobs: markdown-link-check-periodic: name: Markdown Links (all files) if: github.repository_owner == 'submariner-io' runs-on: ubuntu-latest permissions: issues: write steps: - name: Check out the repository uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 - name: Run markdown-link-check uses: gaurav-nelson/github-action-markdown-link-check@4d97ad89bbb0de4be573a9d7a2fc0ce900afc519 with: config-file: ".markdownlinkcheck.json" - name: Raise an Issue to report broken links if: ${{ failure() }} uses: peter-evans/create-issue-from-file@433e51abf769039ee20ba1293a088ca19d573b7f with: title: Broken link detected by CI content-filepath: .github/ISSUE_TEMPLATE/broken-link.md labels: automated, broken link