From 90383438efa3c79aa4f650c049e4c035c3644250 Mon Sep 17 00:00:00 2001 From: b-long Date: Sun, 25 Jan 2026 14:17:15 -0500 Subject: [PATCH] Enable CI for stacked PRs targeting any branch Updates pull_request trigger to run on PRs targeting any branch (branches: ['**']) instead of only master branch. This enables GitHub Actions CI to run on stacked PRs that target feature branches rather than master. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 612d937..f0b81a6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,7 +4,7 @@ on: push: branches: [ master ] pull_request: - branches: [ master ] + branches: [ '**' ] env: TAGS: "-tags=ci"