From 86f379f1f1e87577f342fe2b1fd7c8e15cd5910e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yolan=20Honor=C3=A9-Roug=C3=A9?= Date: Mon, 30 Aug 2021 13:15:38 +0200 Subject: [PATCH] :construction_worker: Add missing workflow for broken links detection (#6) --- .github/workflows/check-links.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/check-links.yml diff --git a/.github/workflows/check-links.yml b/.github/workflows/check-links.yml new file mode 100644 index 00000000..804498fe --- /dev/null +++ b/.github/workflows/check-links.yml @@ -0,0 +1,22 @@ +name: check-links + +on: + push: + branches: [master] + tags: + - '*' + pull_request: + branches: [master] + schedule: + - cron: '0 3 * * 1' # runs at 3 AM every monday + +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' + use-verbose-mode: 'yes' + config-file: 'mlc_config.json'