diff --git a/.github/workflows/markdown-link-check-config.json b/.github/workflows/markdown-link-check-config.json deleted file mode 100644 index 47d327ee04..0000000000 --- a/.github/workflows/markdown-link-check-config.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "ignorePatterns": [ - { - "pattern": "^http://localhost" - } - ], - "aliveStatusCodes": [429, 200] -} diff --git a/.github/workflows/markdown-link-check.yml b/.github/workflows/markdown-link-check.yml deleted file mode 100644 index e21d0238b3..0000000000 --- a/.github/workflows/markdown-link-check.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Check Markdown links - -on: - push: - paths: - - '**.md' - pull_request: - branches: [main] - paths: - - '**.md' - -jobs: - markdown-link-check: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: gaurav-nelson/github-action-markdown-link-check@v1 - with: - use-quiet-mode: 'yes' - use-verbose-mode: 'yes' - check-modified-files-only: 'yes' - config-file: '.github/workflows/markdown-link-check-config.json' - base-branch: 'main'