From efaa351ebb7d6797b5653a7ab7e490ebc5ffa330 Mon Sep 17 00:00:00 2001 From: Waleed Sadek <62147992+waleedsadek-panx@users.noreply.github.com> Date: Sun, 25 Feb 2024 05:09:07 +0200 Subject: [PATCH] Create action.yml --- .github/workflows/action.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/action.yml diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml new file mode 100644 index 0000000..e71c417 --- /dev/null +++ b/.github/workflows/action.yml @@ -0,0 +1,19 @@ +name: Check Markdown links + +on: + push: + branches: + - master + schedule: + # Run everyday at 00:00 AM on Sunday (See https://pubs.opengroup.org/onlinepubs/9699919799/utilities/crontab.html#tag_20_25_07) + - cron: "0 0 * * 0" + +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'