diff --git a/.github/workflows/check-links.yml b/.github/workflows/check-links.yml deleted file mode 100644 index 1ff05ff..0000000 --- a/.github/workflows/check-links.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: Check Markdown links - -on: - push: - paths: - - ".github/workflows/check-links.yml" - - "**.md" - pull_request: - paths: - - ".github/workflows/check-links.yml" - - "**.md" - schedule: - # Run every Tuesday at 3 AM UTC to catch breakage caused by changes to the linked sites. - - cron: "0 3 * * TUE" - workflow_dispatch: - repository_dispatch: - -jobs: - markdown-link-check: - runs-on: ubuntu-latest - - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Check links - uses: gaurav-nelson/github-action-markdown-link-check@1.0.15 - with: - folder-path: '., ./profile' - # file-path: './README.md, ./LICENSE' - use-quiet-mode: yes - -# EOF