From ec827007ae1741d33d668ffe0ed02f1e84b471af Mon Sep 17 00:00:00 2001 From: Tim Waugh Date: Mon, 20 Oct 2025 15:11:51 +0100 Subject: [PATCH] ci: enable GitHub Actions for 0.4.x branch Add 0.4.x to the list of branches that trigger CI runs in the GitHub Actions workflow. This ensures that pushes and pull requests targeting the stable release branch receive the same automated testing as master. Assisted-by: Claude Code --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 714253bf..c3eba474 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,9 +2,9 @@ name: CI on: push: - branches: [ master, main ] + branches: [ master, main, 0.4.x ] pull_request: - branches: [ master, main ] + branches: [ master, main, 0.4.x ] jobs: test: