From bb17669328dbd69a249c83c1d259c75f2ff1e7cf Mon Sep 17 00:00:00 2001 From: Niall Byrne <9848926+niall-byrne@users.noreply.github.com> Date: Tue, 31 May 2022 11:05:44 -0400 Subject: [PATCH] ci(GITHUB): add configuration for doc link check --- .github/config/markdown.link.check.json | 7 +++++++ .github/workflows/self-test.yml | 1 + 2 files changed, 8 insertions(+) create mode 100644 .github/config/markdown.link.check.json diff --git a/.github/config/markdown.link.check.json b/.github/config/markdown.link.check.json new file mode 100644 index 0000000..0994368 --- /dev/null +++ b/.github/config/markdown.link.check.json @@ -0,0 +1,7 @@ +{ + "ignorePatterns": [ + { + "pattern": "^https://docs.github.com/" + } + ] +} \ No newline at end of file diff --git a/.github/workflows/self-test.yml b/.github/workflows/self-test.yml index 42279d9..968af8a 100644 --- a/.github/workflows/self-test.yml +++ b/.github/workflows/self-test.yml @@ -144,6 +144,7 @@ jobs: - name: Documentation Test -- Check Markdown Links For Readme uses: gaurav-nelson/github-action-markdown-link-check@1.0.12 with: + config-file: 'template/.github/config/markdown.link.check.json' use-quiet-mode: 'no' use-verbose-mode: 'yes' folder-path: 'template, template/.github/workflows'