check_validity_of_all_external_links #432
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
# Tool "markdown-link-check" is used to validate the links | |
# See https://www.npmjs.com/package/markdown-link-check | |
# See https://github.com/gaurav-nelson/github-action-markdown-link-check | |
# For the config file: | |
# See https://github.com/gaurav-nelson/github-action-markdown-link-check#custom-variables | |
# See https://github.com/tcort/markdown-link-check#config-file-format | |
name: check_validity_of_all_external_links | |
on: | |
workflow_dispatch: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
schedule: | |
- cron: '0 0 * * 0' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Action | |
uses: actions/checkout@v4 | |
- name: Run check | |
uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
with: | |
use-quiet-mode: "yes" | |
use-verbose-mode: "yes" | |
max-depth: 10 | |
config-file: "./markdown-link-check_config.json" |