svn commit: r1936824 - apr/apr/branches/1.7.x/.github/workflows

[email protected] Mon, 03 Aug 2026 13:07:28 -0000
Newsgroups gmane.comp.apache.apr.cvs
Message-ID <178576244870.1851432.9033773080784309843@svn03-he-fi>
Author: jorton
Date: Mon Aug  3 13:07:28 2026
New Revision: 1936824

Log:
Merge r1936823 from trunk: [skip ci]

CI: Add concurrency group definitions.

Modified:
   apr/apr/branches/1.7.x/.github/workflows/linux.yml
   apr/apr/branches/1.7.x/.github/workflows/windows.yml

Modified: apr/apr/branches/1.7.x/.github/workflows/linux.yml
==============================================================================
--- apr/apr/branches/1.7.x/.github/workflows/linux.yml	Mon Aug  3 13:06:13 2026	(r1936823)
+++ apr/apr/branches/1.7.x/.github/workflows/linux.yml	Mon Aug  3 13:07:28 2026	(r1936824)
@@ -10,8 +10,11 @@ on:
 env:
   MARGS: "-j2"
 
-jobs:
+concurrency:
+  group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
+  cancel-in-progress: ${{ github.event_name == 'pull_request' }}
 
+jobs:
   build:
     strategy:
       matrix:

Modified: apr/apr/branches/1.7.x/.github/workflows/windows.yml
==============================================================================
--- apr/apr/branches/1.7.x/.github/workflows/windows.yml	Mon Aug  3 13:06:13 2026	(r1936823)
+++ apr/apr/branches/1.7.x/.github/workflows/windows.yml	Mon Aug  3 13:07:28 2026	(r1936824)
@@ -7,6 +7,10 @@ on:
   pull_request:
     branches: [ "trunk" ]
 
+concurrency:
+  group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
+  cancel-in-progress: ${{ github.event_name == 'pull_request' }}
+
 jobs:
   build:
     strategy: