github-action-markdown-link-check icon indicating copy to clipboard operation
github-action-markdown-link-check copied to clipboard

Check all links in markdown files if they are alive or dead. 🔗✔️

Results 47 github-action-markdown-link-check issues
Sort by recently updated
recently updated
newest added

see https://github.com/tcort/markdown-link-check "Avoid using find -exec because it will swallow the error from each consecutive run. Instead, use xargs: ``` find . -name \*.md -print0 | xargs -0 -n1 markdown-link-check...

I have 2 private repos with documentation. RepositoryA has a .md file with a link to a .md file in RepositoryB. GitHub actions in RepositoryA by default doesn't have access...

question

- Add the option to [echo a github actions warning for each broken link found](https://docs.github.com/en/actions/reference/workflow-commands-for-github-actions#setting-a-warning-message) - Add the option to color code the console output to more quickly spot which...

enhancement

Uses the [`::group` workflow command](https://docs.github.com/en/actions/reference/workflow-commands-for-github-actions#grouping-log-lines) to group the results instead of printing ASCII delimiters.

enhancement
question

Hello! I'm using this Github action on a Hugo blog. But I want to skip a complete folder. For this case `/themes` and all the content. ``` tree . -L...

question

with the following config: ```yaml - name: Check for broken Markdown links uses: gaurav-nelson/github-action-markdown-link-check@v1 with: use-quiet-mode: 'yes' use-verbose-mode: 'yes' folder-path: 'crates, installers' file-path: './README.md' ``` i get errors for broken...

enhancement

This looks like an excellent project. When I run it with my mkdocs repository, all of the relative links are marked as broken. I am wondering if there is a...

question

If I set `check-modified-files-only: true`, the link checker ignores the `folder-path` I have set. Here's the workflow: ```yaml link_checker: # https://github.com/gaurav-nelson/github-action-markdown-link-check runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v2 with:...

bug