[Stack 1/17] CI: add concurrency group to E2E workflow; run CI on spr/ branches#2508
Open
[Stack 1/17] CI: add concurrency group to E2E workflow; run CI on spr/ branches#2508
Conversation
This was referenced Mar 30, 2026
Open
Open
When spr force-pushes all stack branches at once, each branch triggers a new E2E run while the previous one is still queued. The concurrency group (keyed on branch ref) cancels the stale run, cutting the number of concurrent E2E jobs roughly in half. Also add `spr/**` to the branch filters in python-ci, jest-server-test, and cypress-tests workflows so spr-managed PRs get the same CI coverage as `jc/**` branches. commit-id:1a8eb714
7f16641 to
b02e443
Compare
This was referenced Mar 30, 2026
This was referenced Mar 30, 2026
Closed
Closed
Closed
Delphi Coverage Report
|
Contributor
There was a problem hiding this comment.
Pull request overview
Improves CI behavior for spr-managed stacked PRs by ensuring relevant workflows run on spr/** branches and by reducing redundant E2E workflow runs via GitHub Actions concurrency.
Changes:
- Add
.spr.ymlconfiguration for spr stacking/merge behavior. - Update
python-ciandjest-server-testworkflows to includespr/**in PR branch filters. - Add a concurrency group to the Cypress E2E workflow and include
spr/**in its PR branch filters.
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
.spr.yml |
Adds spr configuration for stacked PR workflow/merge requirements. |
.github/workflows/python-ci.yml |
Runs Delphi Python CI for PRs targeting spr/** branches (stacked PR bases). |
.github/workflows/jest-server-test.yml |
Runs server integration tests for PRs targeting spr/** branches (stacked PR bases). |
.github/workflows/cypress-tests.yml |
Adds concurrency to cancel stale E2E runs per ref; enables PRs targeting spr/** branches. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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.
When spr force-pushes all stack branches at once, each branch triggers
a new E2E run while the previous one is still queued. The concurrency
group (keyed on branch ref) cancels the stale run, cutting the number
of concurrent E2E jobs roughly in half.
Also add
spr/**to the branch filters in python-ci, jest-server-test,and cypress-tests workflows so spr-managed PRs get the same CI coverage
as
jc/**branches.commit-id:1a8eb714
Stack: