[llvm] workflows/premerge: Move concurrency definition to workflow level (PR #126308)

Tom Stellard via llvm-commits llvm-commits at lists.llvm.org
Fri Feb 7 12:59:30 PST 2025


https://github.com/tstellar created https://github.com/llvm/llvm-project/pull/126308

Prior workflow runs were not being cancelled when the pull request was closed, and I think this was why.  Also, there is no advantage to having the definitions at the job level.

>From 7b0464844a354ed985be95357c1da9f05d327a99 Mon Sep 17 00:00:00 2001
From: Tom Stellard <tstellar at redhat.com>
Date: Fri, 7 Feb 2025 12:56:33 -0800
Subject: [PATCH] workflows/premerge: Move concurrency definition to workflow
 level

Prior workflow runs were not being cancelled when the pull request
was closed and I think this was why.  Also, there is no advantage
to having the definitions at the job level.
---
 .github/workflows/premerge.yaml | 13 ++++---------
 1 file changed, 4 insertions(+), 9 deletions(-)

diff --git a/.github/workflows/premerge.yaml b/.github/workflows/premerge.yaml
index b268f1faab98905..178ab191a58be6d 100644
--- a/.github/workflows/premerge.yaml
+++ b/.github/workflows/premerge.yaml
@@ -21,15 +21,16 @@ on:
       - 'main'
       - 'release/**'
 
+concurrency:
+  group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
+  cancel-in-progress: true
+
 jobs:
   premerge-checks-linux:
     if: >-
         github.repository_owner == 'llvm' &&
         (github.event_name != 'pull_request' || github.event.action != 'closed')
     runs-on: llvm-premerge-linux-runners
-    concurrency:
-      group: ${{ github.workflow }}-linux-${{ github.event.pull_request.number || github.sha }}
-      cancel-in-progress: true
     steps:
       - name: Checkout LLVM
         uses: actions/checkout at v4
@@ -88,9 +89,6 @@ jobs:
         github.repository_owner == 'llvm' &&
         (github.event_name != 'pull_request' || github.event.action != 'closed')
     runs-on: llvm-premerge-windows-runners
-    concurrency:
-      group: ${{ github.workflow }}-windows-${{ github.event.pull_request.number || github.sha }}
-      cancel-in-progress: true
     defaults:
       run:
         shell: bash
@@ -148,9 +146,6 @@ jobs:
 
   permerge-check-macos:
     runs-on: macos-14
-    concurrency:
-      group: ${{ github.workflow }}-macos-${{ github.event.pull_request.number || github.sha }}
-      cancel-in-progress: true
     if: >-
       github.repository_owner == 'llvm' &&
       (startswith(github.ref_name, 'release/') ||



More information about the llvm-commits mailing list