This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch v3-2-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v3-2-test by this push:
new ad55bc4b356 [v3-2-test] Fix newsfragment check being cancelled on
rapid PR events (#64447) (#64495)
ad55bc4b356 is described below
commit ad55bc4b356a08845b379ade31bd28f59015f893
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Wed Apr 1 13:40:31 2026 +0200
[v3-2-test] Fix newsfragment check being cancelled on rapid PR events
(#64447) (#64495)
Change cancel-in-progress from true to false so that concurrent
runs queue instead of cancelling each other. This check is very
lightweight (single API call) so queueing has no downside, and
avoids spurious "Cancelled" status on PRs that receive multiple
events in quick succession (e.g. push + label change).
(cherry picked from commit 7e296282b8db99477b332f07ded6bd62438b266b)
Co-authored-by: Jarek Potiuk <[email protected]>
---
.github/workflows/check-newsfragment-pr-number.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/check-newsfragment-pr-number.yml
b/.github/workflows/check-newsfragment-pr-number.yml
index 3e161ed7b23..01b8b9a9265 100644
--- a/.github/workflows/check-newsfragment-pr-number.yml
+++ b/.github/workflows/check-newsfragment-pr-number.yml
@@ -32,7 +32,7 @@ permissions:
concurrency:
group: check-newsfragment-${{ github.event.pull_request.number }}
- cancel-in-progress: true
+ cancel-in-progress: false
jobs:
check-newsfragment-pr-number: