diff --git a/.github/workflows/markdown-link-checker.yml b/.github/workflows/markdown-link-checker.yml new file mode 100644 index 000000000..b88b08acc --- /dev/null +++ b/.github/workflows/markdown-link-checker.yml @@ -0,0 +1,14 @@ +name: ๐Ÿ€ Markdown Link Check + +on: [pull_request] + +jobs: + markdown-link-check: + name: ๐Ÿงน Check Links + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - uses: gaurav-nelson/github-action-markdown-link-check@v1 + with: + use-quiet-mode: 'yes' + use-verbose-mode: 'yes' diff --git a/mlc_config.json b/mlc_config.json new file mode 100644 index 000000000..9150eec89 --- /dev/null +++ b/mlc_config.json @@ -0,0 +1,8 @@ +{ + "ignorePatterns": [ + { + "pattern": "^http://127.0.0.1.+", + "pattern": "^http://localhost.+" + } + ] +}