You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove top-level workflow concurrency group — each job now manages its own concurrency independently
Simplify detect-provider job: remove is-canary-branch output, consolidate duplicated logic, and hoist is-preview / PKG_NAME to avoid repeated conditionals
Fix preview concurrency groups: use deployment.ref instead of deployment.sha so same-branch runs actually cancel stale audits (cancel-in-progress was a no-op before since each SHA produced a unique group)
Fix production concurrency groups: use ref-based groups for preview environments (stale baseline audits get cancelled) and SHA-based groups for production (each canary deploy stays isolated)
Simplify unlighthouse-audit-production condition from (is-preview == 'true' && production-url != '') || is-canary-branch == 'true' to just production-url != ''
Fix unlighthouse-report condition to use is-preview == 'false' && production-url != '' instead of the removed is-canary-branch output
Test plan
Push two commits quickly to an open PR → first run's preview + production baseline audits get cancelled by the second
Merge to canary → production audit runs to completion, never cancelled
Two different PRs deploying simultaneously → separate groups (different refs), no interference
Cloudflare and unknown provider paths still set all required outputs
Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.
This PR includes no changesets
When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types
jorgemoya
changed the title
fix: prevent cancel in progress for regression-tests
fix: split regression tests into preview and production workflows
Mar 23, 2026
The reason will be displayed to describe this comment to others. Learn more.
Updated 👍
jorgemoya
changed the title
fix: split regression tests into preview and production workflows
fix: use SHA-based concurrency for regression tests
Mar 24, 2026
jorgemoya
changed the title
fix: use SHA-based concurrency for regression tests
fix: use ref-based concurrency groups for regression tests
Mar 24, 2026
jorgemoya
changed the title
fix: use ref-based concurrency groups for regression tests
fix: improve regression-tests workflow structure and concurrency
Mar 24, 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
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.
Summary
detect-providerjob: removeis-canary-branchoutput, consolidate duplicated logic, and hoistis-preview/PKG_NAMEto avoid repeated conditionalsdeployment.refinstead ofdeployment.shaso same-branch runs actually cancel stale audits (cancel-in-progresswas a no-op before since each SHA produced a unique group)unlighthouse-audit-productioncondition from(is-preview == 'true' && production-url != '') || is-canary-branch == 'true'to justproduction-url != ''unlighthouse-reportcondition to useis-preview == 'false' && production-url != ''instead of the removedis-canary-branchoutputTest plan
🤖 Generated with Claude Code