svn commit: r1935149 - httpd/httpd/branches/2.4.x/.github/workflows
[email protected] Mon, 08 Jun 2026 16:43:13 -0000
| Newsgroups | gmane.comp.apache.cvs |
|---|---|
| Message-ID | <178093699367.4149210.10513194301488312671@svn03-he-fi> |
Author: jorton Date: Mon Jun 8 16:43:13 2026 New Revision: 1935149 Log: Merge r1935145 from trunk: CI: Configure GitHub workflows to use concurrency cancel-in-progress for pull requests see recommended best practices at Apache https://cwiki.apache.org/confluence/pages/viewpage.action?spaceKey=INFRA&title=GitHub+Actions+Recommended+Practices Signed-off-by: Aurélien Pupier <[email protected]> Submitted by: Aurélien Pupier <[email protected]> Github: closes #667 Modified: httpd/httpd/branches/2.4.x/.github/workflows/linux.yml httpd/httpd/branches/2.4.x/.github/workflows/windows.yml Modified: httpd/httpd/branches/2.4.x/.github/workflows/linux.yml ============================================================================== --- httpd/httpd/branches/2.4.x/.github/workflows/linux.yml Mon Jun 8 15:09:30 2026 (r1935148) +++ httpd/httpd/branches/2.4.x/.github/workflows/linux.yml Mon Jun 8 16:43:13 2026 (r1935149) @@ -24,6 +24,10 @@ env: # This will need updating as the ubuntu-latest image changes: PHP_FPM: "/usr/sbin/php-fpm8.1" +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} + cancel-in-progress: ${{ github.event_name == 'pull_request' }} + jobs: build: strategy: Modified: httpd/httpd/branches/2.4.x/.github/workflows/windows.yml ============================================================================== --- httpd/httpd/branches/2.4.x/.github/workflows/windows.yml Mon Jun 8 15:09:30 2026 (r1935148) +++ httpd/httpd/branches/2.4.x/.github/workflows/windows.yml Mon Jun 8 16:43:13 2026 (r1935149) @@ -18,6 +18,10 @@ on: - CHANGES - changes-entries/* +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} + cancel-in-progress: ${{ github.event_name == 'pull_request' }} + jobs: build: strategy: