From 3073c38596c482839de72f646d84fb4fa9ab2d17 Mon Sep 17 00:00:00 2001 From: YunShu Date: Tue, 12 Sep 2023 00:19:13 +0800 Subject: [PATCH] ci: remove links check in PR https://github.com/Selflocking/linkchecker/actions I check every week whether the links in the updated repo are dead links, so this ci is redundant. --- .github/workflows/docs-links-check-pr.yml | 35 ----------------------- 1 file changed, 35 deletions(-) delete mode 100644 .github/workflows/docs-links-check-pr.yml diff --git a/.github/workflows/docs-links-check-pr.yml b/.github/workflows/docs-links-check-pr.yml deleted file mode 100644 index 2ce5d05c..00000000 --- a/.github/workflows/docs-links-check-pr.yml +++ /dev/null @@ -1,35 +0,0 @@ -name: Check links for modified docs - -on: - pull_request: - paths: - - 'docs/**' - -jobs: - docs-links-check: - runs-on: ubuntu-latest - steps: - - name: Checkout 🛎️ - uses: actions/checkout@master - - - name: Check links for mdx files 🔎 - uses: gaurav-nelson/github-action-markdown-link-check@v1 - with: - use-quiet-mode: 'yes' # only show errors in output. - # use-verbose-mode: 'yes' # show detailed HTTP status for checked links. - # refer to https://github.com/tcort/markdown-link-check#config-file-format - config-file: '.github/workflows/docs.links.check.config.json' - check-modified-files-only: 'yes' - folder-path: 'docs/' # only check the docs/ folder - file-extension: '.mdx' - - - name: Check links for markdown files 🔎 - uses: gaurav-nelson/github-action-markdown-link-check@v1 - with: - use-quiet-mode: 'yes' # only show errors in output. - # use-verbose-mode: 'yes' # show detailed HTTP status for checked links. - # refer to https://github.com/tcort/markdown-link-check#config-file-format - config-file: '.github/workflows/docs.links.check.config.json' - check-modified-files-only: 'yes' - folder-path: 'docs/' # only check the docs/ folder - file-extension: '.md'