From 5710c3111e5534467d7da9285c22f67724028f67 Mon Sep 17 00:00:00 2001 From: Brian Kroth Date: Thu, 10 Dec 2020 14:42:13 -0600 Subject: [PATCH 1/3] debugging markdown lint checker --- .github/workflows/main.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index bce16e35639..cb3fc419360 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -343,8 +343,9 @@ jobs: - uses: actions/checkout@v2 - uses: gaurav-nelson/github-action-markdown-link-check@v1 with: - use-quiet-mode: yes - folder-path: './documentation, ./build, ./source, ./test, ./scripts' + use-quiet-mode: no + use-verbose-mode: yes + folder-path: './documentation, ./build, ./source, ./test, ./scripts, ./external' file-path: './CODE_OF_CONDUCT.md, ./CONTRIBUTING.md, ./README.md, ./SECURITY.md' build-publish-website: From bef899e3bf2aa375bb6e7eecac9081d5fe81b6d2 Mon Sep 17 00:00:00 2001 From: Brian Kroth Date: Thu, 10 Dec 2020 15:14:52 -0600 Subject: [PATCH 2/3] avoid broken markdown-link-check action version The following upstream change adds quotes around our list of folders to check which results in passing a bad path to find: https://github.com/gaurav-nelson/github-action-markdown-link-check/commit/53c1dda67d2de0a25bbdce0b1a4054cfbb468b32 --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index cb3fc419360..0e0dccaa3d7 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -341,7 +341,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - uses: gaurav-nelson/github-action-markdown-link-check@v1 + - uses: gaurav-nelson/github-action-markdown-link-check@1.0.8 with: use-quiet-mode: no use-verbose-mode: yes From c6c85752a8ff22d0246fd14ec7a0537830ae0d10 Mon Sep 17 00:00:00 2001 From: Brian Kroth Date: Thu, 10 Dec 2020 15:17:07 -0600 Subject: [PATCH 3/3] turn off verbose mode --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 0e0dccaa3d7..6722976cffe 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -343,8 +343,8 @@ jobs: - uses: actions/checkout@v2 - uses: gaurav-nelson/github-action-markdown-link-check@1.0.8 with: - use-quiet-mode: no - use-verbose-mode: yes + use-quiet-mode: yes + use-verbose-mode: no folder-path: './documentation, ./build, ./source, ./test, ./scripts, ./external' file-path: './CODE_OF_CONDUCT.md, ./CONTRIBUTING.md, ./README.md, ./SECURITY.md'