name: Links on: workflow_dispatch: schedule: - cron: "0 0 * * *" # Every day at midnight pull_request: paths: - ".github/workflows/links.yml" jobs: check: runs-on: ubuntu-latest if: github.repository == 'containerd/containerd' name: lychee timeout-minutes: 15 steps: - uses: actions/checkout@v4 - uses: lycheeverse/lychee-action@v1.9.3 with: # Fail action on broken links fail: true args: --exclude-path vendor --exclude-path releases --timeout 30 --no-progress './**/*.md' format: markdown # Write GitHub job summary jobSummary: true