This is an automated email from the ASF dual-hosted git repository.

rvesse pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/jena.git


The following commit(s) were added to refs/heads/main by this push:
     new 9628ef5701 Launch workflow when a PR is synchronized. Limit to one 
running job.
9628ef5701 is described below

commit 9628ef5701f920afeb5890798e87d0b38e493135
Author: Andy Seaborne <[email protected]>
AuthorDate: Sun May 10 14:20:47 2026 +0100

    Launch workflow when a PR is synchronized. Limit to one running job.
---
 .github/workflows/pr.yml | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml
index 158bed7eae..c3a578317a 100644
--- a/.github/workflows/pr.yml
+++ b/.github/workflows/pr.yml
@@ -6,10 +6,15 @@ on:
   pull_request:
     types:
       - opened
+      - synchonized
       - reopened
     branches:
       - 'main'
       
+concurrency:
+  group: ${{ github.workflow }}-${{ github.event.pull_request.number || 
github.ref }}
+  cancel-in-progress: true
+  
 permissions:
   contents: read
 

Reply via email to