From a12447b21e55848b6ce2aa7190eab0a47b35e811 Mon Sep 17 00:00:00 2001 From: Ethan Mann Date: Mon, 11 Jan 2021 14:35:48 -0500 Subject: [PATCH] Workflow to run checks is now triggered by PRs --- .github/workflows/checks.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 434bc4f05..20131c136 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -1,6 +1,13 @@ name: Run Checks -on: [push] +on: + push: + branches: ["**"] + pull_request: + # The branches below must be a subset of the branches above + branches: [main] + schedule: + - cron: '0 23 * * 2' jobs: test: