From 2e3c200b967f1c2bc20c8311ed24cb92d7e16996 Mon Sep 17 00:00:00 2001 From: Corban Raun Date: Wed, 3 Feb 2021 17:38:44 -0700 Subject: [PATCH] Check links action --- .github/mlc_config.json | 7 +++++++ .github/workflows/build.yml | 12 ++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 .github/mlc_config.json create mode 100644 .github/workflows/build.yml diff --git a/.github/mlc_config.json b/.github/mlc_config.json new file mode 100644 index 0000000..28ad1ab --- /dev/null +++ b/.github/mlc_config.json @@ -0,0 +1,7 @@ +{ + "timeout": "20s", + "retryOn429": true, + "retryCount": 5, + "fallbackRetryDelay": "30s", + "aliveStatusCodes": [200, 206] +} diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..b77c259 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,12 @@ +name: Check Markdown links + +on: [ push, pull_request ] +jobs: + markdown-link-check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: gaurav-nelson/github-action-markdown-link-check@v1 + with: + use-quiet-mode: 'yes' + config-file: '.github/mlc_config.json'