This is an automated email from the git hooks/post-receive script.

Git pushed a commit to branch master
in repository ffmpeg.

The following commit(s) were added to refs/heads/master by this push:
     new 69773c404a forgejo/workflows: don't cancel concurrent CI builds for 
non-PR pushes
69773c404a is described below

commit 69773c404a2cd90e8f25168548d0634a9e5379a1
Author:     Timo Rothenpieler <[email protected]>
AuthorDate: Fri Jan 9 17:46:03 2026 +0100
Commit:     Timo Rothenpieler <[email protected]>
CommitDate: Sat Jan 10 01:53:48 2026 +0000

    forgejo/workflows: don't cancel concurrent CI builds for non-PR pushes
---
 .forgejo/workflows/lint.yml | 3 +++
 .forgejo/workflows/test.yml | 3 +++
 2 files changed, 6 insertions(+)

diff --git a/.forgejo/workflows/lint.yml b/.forgejo/workflows/lint.yml
index 4b3a546ad7..58dcf99043 100644
--- a/.forgejo/workflows/lint.yml
+++ b/.forgejo/workflows/lint.yml
@@ -6,6 +6,9 @@ on:
       - master
   pull_request:
 
+concurrency:
+  cancel-in-progress: ${{ forge.event_name == 'pull_request' }}
+
 jobs:
   lint:
     name: Pre-Commit
diff --git a/.forgejo/workflows/test.yml b/.forgejo/workflows/test.yml
index 1ef38d5809..ffd1123f9c 100644
--- a/.forgejo/workflows/test.yml
+++ b/.forgejo/workflows/test.yml
@@ -6,6 +6,9 @@ on:
       - master
   pull_request:
 
+concurrency:
+  cancel-in-progress: ${{ forge.event_name == 'pull_request' }}
+
 jobs:
   run_fate:
     name: Fate (${{ matrix.runner }}, ${{ matrix.shared }}, ${{ matrix.bits }} 
bit)

_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to