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