From 06d719447783103d7df2a00b50b01a3b843b747c Mon Sep 17 00:00:00 2001 From: Elias Hernandis Date: Sat, 21 Feb 2026 10:28:12 +0100 Subject: [PATCH] Fix CI not running on branches with slashes in their names The `*` glob in GitHub Actions does not match `/`, so branches like `fix/foo` never triggered the test workflow. Switch to `**` to match all branch names regardless of slashes. Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index feb35af..b054681 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -2,7 +2,7 @@ name: Test on: push: - branches: ["*"] + branches: ["**"] jobs: test: