From 6816b628ab6632a7e8f79a2aec9c2c4b80b3471b Mon Sep 17 00:00:00 2001 From: petlenz Date: Tue, 18 Aug 2026 21:24:56 +0200 Subject: [PATCH 1/2] ci: run on pull requests against any base branch The pull_request trigger filtered on branches: [main], so a PR targeting a feature branch matched nothing. Work here lands through stacks -- #27..#31 all target a feature branch -- and not one of them has ever been built or tested by CI. The last run of any kind was main, three weeks ago. Dropping the filter runs the job for every pull request whatever its base. The push trigger keeps its main filter, so branch pushes add no load: a stacked branch is covered by its own PR. --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2edddd4..2ee8428 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,8 +3,10 @@ name: CI on: push: branches: [main] + # No branch filter: work lands through stacks of PRs that target a feature + # branch rather than main, and a base-branch filter meant none of them was + # ever built or tested here. pull_request: - branches: [main] jobs: build-and-test: From 69a290f2ce841d61df5a9b279d8dc52af514685b Mon Sep 17 00:00:00 2001 From: petlenz <98174228+petlenz@users.noreply.github.com> Date: Tue, 25 Aug 2026 07:36:06 +0200 Subject: [PATCH 2/2] remove not needed comment --- .github/workflows/ci.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2ee8428..6c58235 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,9 +3,6 @@ name: CI on: push: branches: [main] - # No branch filter: work lands through stacks of PRs that target a feature - # branch rather than main, and a base-branch filter meant none of them was - # ever built or tested here. pull_request: jobs: