From 29947177e8e6f061cce045a5477bd386f8f4d45c Mon Sep 17 00:00:00 2001 From: Brian Krabach Date: Mon, 18 May 2026 08:12:09 -0700 Subject: [PATCH] ci: run Rust Core CI on push to main, not just PRs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The workflow was only triggered on pull_request and push to rust-core. This meant when main went red — as happened after IT's wasmtime auto-fix in #74 — there was no signal until the next PR opened. Add 'main' to the push branches so any direct push (merge, admin push, revert) triggers a full CI run on the new HEAD. Catches future regressions immediately. Co-authored-by: Amplifier --- .github/workflows/rust-core-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rust-core-ci.yml b/.github/workflows/rust-core-ci.yml index 3703b27..65f04cc 100644 --- a/.github/workflows/rust-core-ci.yml +++ b/.github/workflows/rust-core-ci.yml @@ -2,7 +2,7 @@ name: Rust Core CI on: push: - branches: [rust-core] + branches: [rust-core, main] pull_request: branches: [rust-core, main]