From 410e4cf0a3c0d01a6d5f021bd7f2a6b9cdc180d7 Mon Sep 17 00:00:00 2001 From: Unmesh Gundecha Date: Sun, 21 Feb 2021 00:09:14 +0800 Subject: [PATCH] Fix workflows --- .github/workflows/link_check.yml | 16 ++++++++++++++++ .github/workflows/workflow.yml | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/link_check.yml diff --git a/.github/workflows/link_check.yml b/.github/workflows/link_check.yml new file mode 100644 index 0000000..2174ed9 --- /dev/null +++ b/.github/workflows/link_check.yml @@ -0,0 +1,16 @@ +name: Check Markdown links + +on: + push: + branches: + - master + schedule: + # Run every Monday + - cron: "0 0 * * 1" + +jobs: + markdown-link-check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - uses: gaurav-nelson/github-action-markdown-link-check \ No newline at end of file diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index f3392d8..a1a0b06 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -1,6 +1,6 @@ name: CI -on: [] +on: [push, pull_request] jobs: build: