ci: gate tests and desktop smoke on PRs into release/** and hotfix/**#82
Merged
Conversation
PRs targeting release/* or hotfix/* currently only run the description check — test.yml and desktop-e2e.yml are gated to PRs against main or develop. That leaves rc stabilization PRs (like fix/* → release/0.3.0) unvalidated until after merge. Add release/** and hotfix/** to each workflow's pull_request.branches list so the same gates apply. build.yml intentionally skipped: desktop bundles are expensive cross-platform builds; post-merge push-to-release already catches bundle failures before tag. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This was referenced Apr 23, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Add `release/` and `hotfix/` to the `pull_request.branches` list in `test.yml` and `desktop-e2e.yml`, so the same CI gates that run on PRs to `main`/`develop` also run on PRs into release and hotfix branches.
Why
Today `test.yml` and `desktop-e2e.yml` trigger on `pull_request` only for `main` and `develop` (test) or `main` (desktop smoke). That means PRs targeting `release/0.3.0` — including rc stabilization fixes like #81 — only get the lightweight `pr-description-check.yml` run. Tests only execute on push after merge, when failures are more expensive to fix. Adding the release/hotfix branches here closes that gap so rc PRs get the same validation as PRs into `develop`.
Scope
Target branch
`release/0.3.0` — lands first where it's immediately useful for rc.2 stabilization; forward-propagates into `main` and `develop` via the standard release merges at 0.3.0 GA.
Test plan
🤖 Generated with Claude Code