-
Notifications
You must be signed in to change notification settings - Fork 134
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
docs: Add all md files in root dir to linkchecker #1461
Closed
Closed
Changes from 1 commit
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
54a9aae
Add all md files in root dir to linkchecker
p-offtermatt fd15223
Add whole repo to linkchecker
p-offtermatt 556b1db
Fix links
p-offtermatt b54981e
Fix link: into -> intro
p-offtermatt 00448e0
Remove excluded folders in the linkchecker workflow
p-offtermatt c4d05a5
Revert changes to .changelog folder
p-offtermatt c4ed126
Ignore links to .changelog directory and utilize config file
p-offtermatt 6c1b3be
Check repo root and docs/docs separately
p-offtermatt 9ab806c
Change job names
p-offtermatt fd6a90c
Merge branch 'main' into ph/linkchecker
p-offtermatt 96ed736
Add back trigger condition for link checker
p-offtermatt File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,5 +7,12 @@ jobs: | |
# Check out the latest version of the code | ||
- uses: actions/checkout@v4 | ||
|
||
# Remove folders that we do not want to check. | ||
# This is due to the markdown-link-check action | ||
# not having an exclude parameter, see | ||
# https://github.com/gaurav-nelson/github-action-markdown-link-check/issues/38 | ||
- name: Remove folders that we do not want to check | ||
run: rm -rf .changelog | ||
|
||
# Checks the status of hyperlinks in *.md files in docs/ | ||
- uses: gaurav-nelson/[email protected] |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Isn't this going to just remove an entire folder from the repo? See #1464 as a potential solution.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It will remove it, but only in the context of this workflow - maybe I'm wrong, but your PR just changes the trigger for the workflow not to trigger on changes to .changelog, but the check still considers files in the .changelog folder when it triggers, right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In this PR, note the folder is only removed for this particular workflow, so it doesn't negatively impact other workflows