From d691130958471d2f679213c7022da01b23c6edd9 Mon Sep 17 00:00:00 2001 From: Luong Vo Date: Sat, 22 Oct 2022 18:03:38 +0700 Subject: [PATCH] fix: allow github action to run on push and pull request to master --- .github/workflows/action.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml index 04a60dc..3c71f3d 100644 --- a/.github/workflows/action.yml +++ b/.github/workflows/action.yml @@ -1,6 +1,12 @@ name: Check Markdown links -on: push +on: + push: + branches: + - master + pull_request: + branches: + - master jobs: markdown-link-check: