ci: cancel superseded runs in tests workflow (#2341) - #2374
Merged
AkramBitar merged 1 commit intoSep 17, 2026
Merged
AkramBitar merged 1 commit into
AkramBitar merged 1 commit into
Conversation
Effi-S
self-requested a review
September 16, 2026 06:00
Effi-S
force-pushed
the
fix/2341-ci-concurrency-cancel-tests
branch
from
September 16, 2026 06:00
f7e3b1f to
7ea5220
Compare
Effi-S
requested changes
Sep 16, 2026
Effi-S
force-pushed
the
fix/2341-ci-concurrency-cancel-tests
branch
from
September 16, 2026 13:31
7ea5220 to
15a5fdd
Compare
Signed-off-by: Surbhi Agarwal <SurbhiAgarwal1@users.noreply.github.com> ci: add retry logic to install-tools for proxy resilience (LFDT-Panurus#2341) Signed-off-by: Surbhi Agarwal <SurbhiAgarwal1@users.noreply.github.com> Signed-off-by: Effi-S <effi.szt@gmail.com>
Effi-S
force-pushed
the
fix/2341-ci-concurrency-cancel-tests
branch
from
September 16, 2026 14:04
15a5fdd to
c1feff3
Compare
Contributor
|
@SurbhiAgarwal1, cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}to cancel-in-progress: ${{ github.event_name == 'pull_request' }} |
Effi-S
approved these changes
Sep 16, 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.
Fixes #2341
Problem
The Tests workflow (
.github/workflows/tests.yml) defines no concurrency group. When a PR branch is force-pushed or rebased, previous in-flight runs execute to completion side by side with new runs, wasting runner capacity and delaying feedback on the latest commit.Solution
concurrencyblock to.github/workflows/tests.yml: