From f031d2afd0cc6606e7bf1368e5e928d23e3e48db Mon Sep 17 00:00:00 2001 From: "Federico M. Facca" Date: Mon, 16 Dec 2024 16:36:15 +0100 Subject: [PATCH] Fix link check for `vendor` folders in subdirectories (#147) ## Description Fix link check for `vendor` folders in subdirectories ## Changes Made Fix link check for `vendor` folders in subdirectories ## Related Issues N/A ## Checklist - [x] I have used a PR title that is descriptive enough for a release note. - [ ] I have tested these changes locally. - [x] I have added appropriate tests or updated existing tests. - [ ] I have tested these changes on a cluster [name of the cluster] / customer [name of the customer] - [ ] I have added appropriate documentation or updated existing documentation. --------- Co-authored-by: cosimomeli --- .github/workflows/markdown.yaml | 2 ++ RELEASE_NOTES.md | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/markdown.yaml b/.github/workflows/markdown.yaml index 05280f6..3e81991 100644 --- a/.github/workflows/markdown.yaml +++ b/.github/workflows/markdown.yaml @@ -108,7 +108,9 @@ jobs: git config --global user.email 'bot@zaphiro.ch' git commit -am "Automated markdown-lint fixes [dependabot skip]" || echo "No changes to commit" git push + shopt -s globstar rm -fr vendor + rm -fr */vendor # Checks the status of hyperlinks in .md and .MD files in verbose mode (the action is case sensitive and .{MD,md}) - name: Check links (.md) uses: gaurav-nelson/github-action-markdown-link-check@v1 diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 9209d9d..707f594 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -4,8 +4,8 @@ ### Features -- Add workflow to create a new release (PR #145 by @chicco785) - docker workflow: add javascript mode for cache (PR #146 by @chicco785) +- Add workflow to create a new release (PR #145 by @chicco785) - golang workflow: include `.sql` and `.docker/*.yml` files in golang changes filter (PR #142 by @chicco785) - Golang & Docker workflows: add db caching to trivy (PR #138 by @chicco785) @@ -28,6 +28,7 @@ ### Bug Fixes +- Fix link check for `vendor` folders in subdirectories (PR #147 by @chicco785) - deployment workflow: fix yaml-update-action@v1 is not available (PR #139 by @chicco785) - deployment workflow: fix tag version extraction (PR #137 by @cosimomeli)