Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix link check for vendor folders in subdirectories #147

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/markdown.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,9 @@ jobs:
git config --global user.email '[email protected]'
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
Expand Down
3 changes: 2 additions & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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)
Expand Down
Loading