From 762341357dd23208d524dcabf7dcb8794a6e3957 Mon Sep 17 00:00:00 2001 From: 2qx <57997077+2qx@users.noreply.github.com> Date: Thu, 14 May 2020 16:00:41 -0400 Subject: [PATCH] Create check_links.yml --- .github/workflows/check_links.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 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 0000000..7027848 --- /dev/null +++ b/.github/workflows/check_links.yml @@ -0,0 +1,25 @@ + + +name: CI + +# Controls when the action will run. Triggers the workflow on push or pull request +# events but only for the master branch +on: + push: + branches: + - master + schedule: + # Run everyday Sunday at 4:00 UTC + - cron: "0 4 * * 0" + +# A workflow to check all markdown links +jobs: + markdown-link-check: + 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' + check-modified-files-only: 'yes'