From e38cca8cca2696abc46930c7d6f22e25a92d2239 Mon Sep 17 00:00:00 2001 From: Gergely Brautigam <182850+Skarlso@users.noreply.github.com> Date: Wed, 21 May 2025 10:39:55 +0200 Subject: [PATCH 1/5] fix: use the updated link checker fork Signed-off-by: Gergely Brautigam <182850+Skarlso@users.noreply.github.com> --- .github/workflows/verify-md.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/verify-md.yml b/.github/workflows/verify-md.yml index 93a9a984ba..9f8fd8c42f 100644 --- a/.github/workflows/verify-md.yml +++ b/.github/workflows/verify-md.yml @@ -29,7 +29,7 @@ jobs: steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: Markdown verify links - uses: gaurav-nelson/github-action-markdown-link-check@3c3b66f1f7d0900e37b71eca45b63ea9eedfce31 # 1.0.17 + uses: tcort/github-action-markdown-link-check@a800ad5f1c35bf61987946fd31c15726a1c9f2ba # v1.1.0 with: use-quiet-mode: yes use-verbose-mode: no From e5f7e58a70e8d06bf648a23fabf3d77d22919fad Mon Sep 17 00:00:00 2001 From: Gergely Brautigam <182850+Skarlso@users.noreply.github.com> Date: Wed, 21 May 2025 11:07:18 +0200 Subject: [PATCH 2/5] added test edit to trigger the link checker Signed-off-by: Gergely Brautigam <182850+Skarlso@users.noreply.github.com> --- docs/command-plugins.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/command-plugins.md b/docs/command-plugins.md index 00c9a18bca..aa51cd2af3 100644 --- a/docs/command-plugins.md +++ b/docs/command-plugins.md @@ -1,5 +1,7 @@ # OCM Plugin framework +THIS IS A TEST EDIT. + The OCM Plugin framework now supports two features to extend the CLI with new (OCM related) commands: From 38025ccf3accda6dd7215c0e17c19694b7469799 Mon Sep 17 00:00:00 2001 From: Gergely Brautigam <182850+Skarlso@users.noreply.github.com> Date: Wed, 21 May 2025 11:15:41 +0200 Subject: [PATCH 3/5] fix the link regex Signed-off-by: Gergely Brautigam <182850+Skarlso@users.noreply.github.com> --- .github/config/markdown-link-check.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/config/markdown-link-check.json b/.github/config/markdown-link-check.json index 89c303a8b9..89069e3759 100644 --- a/.github/config/markdown-link-check.json +++ b/.github/config/markdown-link-check.json @@ -5,6 +5,6 @@ { "pattern": "^http[s]*://localhost.*" } ,{ "pattern": "^https://.*\\.sigstore\\.dev.*" } ,{ "pattern": "^{{.*}}$" } - ,{ "pattern": "^https://github.com/**/compare/**" } + ,{ "pattern": "^https://github.com/.*/compare/.*" } ] } From 7f52473c098662df57558eb1b9fdd903d134e90b Mon Sep 17 00:00:00 2001 From: Gergely Brautigam <182850+Skarlso@users.noreply.github.com> Date: Wed, 21 May 2025 11:51:28 +0200 Subject: [PATCH 4/5] ignore templated links Signed-off-by: Gergely Brautigam <182850+Skarlso@users.noreply.github.com> --- .github/config/markdown-link-check.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/config/markdown-link-check.json b/.github/config/markdown-link-check.json index 89069e3759..99f8df979e 100644 --- a/.github/config/markdown-link-check.json +++ b/.github/config/markdown-link-check.json @@ -6,5 +6,6 @@ ,{ "pattern": "^https://.*\\.sigstore\\.dev.*" } ,{ "pattern": "^{{.*}}$" } ,{ "pattern": "^https://github.com/.*/compare/.*" } + ,{ "pattern": "%7B%7B.*%7D%7D" } ] } From 1403be4d482bd21ef2398782d8ac139e7e2727af Mon Sep 17 00:00:00 2001 From: Gergely Brautigam <182850+Skarlso@users.noreply.github.com> Date: Wed, 21 May 2025 12:23:28 +0200 Subject: [PATCH 5/5] remove test edit from md Signed-off-by: Gergely Brautigam <182850+Skarlso@users.noreply.github.com> --- docs/command-plugins.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/command-plugins.md b/docs/command-plugins.md index aa51cd2af3..00c9a18bca 100644 --- a/docs/command-plugins.md +++ b/docs/command-plugins.md @@ -1,7 +1,5 @@ # OCM Plugin framework -THIS IS A TEST EDIT. - The OCM Plugin framework now supports two features to extend the CLI with new (OCM related) commands: