From 647cc441eece20218d7387f37d94042e88042057 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Thu, 25 Sep 2025 16:22:57 +0800 Subject: Update workflow trigger to release branch - Change push and pull_request triggers from main branch to release branch - This ensures CI/CD only runs on release branch for production builds --- .github/workflows/rust.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to '.github') diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 794df56..071dc47 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -2,9 +2,7 @@ name: Rust CI on: push: - branches: ["main"] - pull_request: - branches: ["main"] + branches: ["release"] env: CARGO_TERM_COLOR: always -- cgit