svn commit: r1936891 - in apr/apr/branches/1.8.x: . .github/workflows
| Newsgroups | gmane.comp.apache.apr.cvs |
|---|---|
| Message-ID | <178591848756.2559536.5492096197479878149@svn03-he-fi> |
Author: jorton
Date: Wed Aug 5 08:28:07 2026
New Revision: 1936891
Log:
Merge r1936823 from trunk:
CI: Add concurrency group definitions.
[skip ci]
Modified:
apr/apr/branches/1.8.x/ (props changed)
apr/apr/branches/1.8.x/.github/workflows/linux.yml
apr/apr/branches/1.8.x/.github/workflows/windows.yml
Modified: apr/apr/branches/1.8.x/.github/workflows/linux.yml
==============================================================================
--- apr/apr/branches/1.8.x/.github/workflows/linux.yml Wed Aug 5 06:45:04 2026 (r1936890)
+++ apr/apr/branches/1.8.x/.github/workflows/linux.yml Wed Aug 5 08:28:07 2026 (r1936891)
@@ -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.8.x/.github/workflows/windows.yml
==============================================================================
--- apr/apr/branches/1.8.x/.github/workflows/windows.yml Wed Aug 5 06:45:04 2026 (r1936890)
+++ apr/apr/branches/1.8.x/.github/workflows/windows.yml Wed Aug 5 08:28:07 2026 (r1936891)
@@ -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: