From 549913f0ef912b1068e4c63b2338aef4d57a2f11 Mon Sep 17 00:00:00 2001 From: Kevin Reid Date: Wed, 4 Sep 2024 16:15:23 -0700 Subject: [PATCH] CI: Add `next/*` to branches that trigger CI on push. --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3773afa1e..ebba6edc6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,8 +7,13 @@ on: workflow_dispatch: push: branches: + # Test everything that goes on on main. - main + # The special branch “ci” is used for testing CI behaviors even without a PR. - ci + # next/* branches are used for testing with future versions of dependencies, + # usually by way of `[patch]`ing a dependency, thus won’t have outstanding PRs. + - next/* env: CARGO_TERM_COLOR: always