From e0902ad94f46f98cfdcf35f38c6348d6b0e26dae Mon Sep 17 00:00:00 2001 From: meh Date: Mon, 27 Jul 2026 07:23:46 +0700 Subject: [PATCH] ci: trigger the Rust workflow on master The workflow only listened to "main", but the repository's only branch (and GitHub default) is "master": pushes to master and PRs targeting it -- including the merged flush fix in #171 -- run no checks at all, so the suite silently stopped gating anything. Keep "main" in the list in case the branch is ever renamed. Co-Authored-By: Claude Fable 5 --- .github/workflows/rust.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 80cca87..7d3d873 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -2,9 +2,9 @@ name: Rust on: push: - branches: [ "main" ] + branches: [ "main", "master" ] pull_request: - branches: [ "main" ] + branches: [ "main", "master" ] env: CARGO_TERM_COLOR: always