chore(ci): serialize E2E test runs across PRs#678
Open
bhabalan wants to merge 2 commits intowebex:nextfrom
Open
chore(ci): serialize E2E test runs across PRs#678bhabalan wants to merge 2 commits intowebex:nextfrom
bhabalan wants to merge 2 commits intowebex:nextfrom
Conversation
Add job-level concurrency groups to E2E jobs so that each suite (meetings, cc-widgets) runs one at a time across different PRs. Within the same PR, older runs are still canceled by the existing workflow-level concurrency group.
Contributor
Author
|
@codex review |
|
Codex Review: Didn't find any major issues. Bravo. ℹ️ About Codex in GitHubYour team has set up Codex to review pull requests in this repo. Reviews are triggered when you
If Codex has suggestions, it will comment; otherwise it will react with 👍. Codex can also answer questions or update the PR. Try commenting "@codex address that feedback". |
|
This pull request is automatically being deployed by Amplify Hosting (learn more). |
eigengravy
approved these changes
Apr 27, 2026
Shreyas281299
approved these changes
Apr 28, 2026
Contributor
Shreyas281299
left a comment
There was a problem hiding this comment.
Approving. Can you add some proof of this working.
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.
COMPLETES #CAI-7862
This pull request addresses
E2E test suites (meetings and cc-widgets) currently run in parallel across different PRs. Since these tests hit shared infrastructure (Playwright sandbox, entry points), concurrent runs can cause flaky failures and resource contention.
by making the following changes
Added job-level
concurrencygroups to each E2E job in the Pull Request CI workflow:e2e_test_meetings→ concurrency groupe2e-meetingse2e_test_cc_widgets→ concurrency groupe2e-cc-widgetsBoth use
cancel-in-progress: falseso that a queued run waits for the currently running one to finish rather than canceling it.Behavior summary:
Change Type
The following scenarios were tested
The GAI Coding Policy And Copyright Annotation Best Practices
Checklist before merging