From 1317cda8e77d1f5bb3948a098d411baa74d00e1a Mon Sep 17 00:00:00 2001 From: Alisdair McDiarmid Date: Fri, 23 Feb 2024 11:53:34 -0500 Subject: [PATCH] build: Run checks on all pushed branches It is helpful to see the result of the checks workflow prior to opening a PR, to avoid wasting time fixing unexpectedly failing checks while the PR is open and awaiting review. This commit configures GitHub Actions to run checks on all pushed branches. --- .github/workflows/checks.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index f4ec5e448c..877c6a6b0e 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -19,9 +19,7 @@ on: pull_request: push: branches: - - main - - 'v[0-9]+.[0-9]+' - - checks-workflow-dev/* + - '*' tags: - 'v[0-9]+.[0-9]+.[0-9]+*'