From 941387af3fa8b0406181d9057871a51a1869df45 Mon Sep 17 00:00:00 2001 From: Daniel McCarney Date: Tue, 9 Jul 2024 13:35:18 -0400 Subject: [PATCH] ci: run on push for _dev branches This is a compromise between running on all pushes vs only running for main/PRs that still allows easy on-demand CI runs while developing. --- .github/workflows/CI.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 41ecf7b..59f2fc4 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -4,6 +4,7 @@ on: push: branches: - main + - "*_dev" pull_request: {} schedule: - cron: "33 4 * * 5"