From 6acce8ea78e99c686b74848031eba5790abd307f Mon Sep 17 00:00:00 2001 From: Sourabh Mehta Date: Fri, 17 Apr 2026 09:22:15 +0200 Subject: [PATCH 1/2] Separate workflow reusable-call runs from standalone runs --- .github/workflows/buildmgr.yml | 2 +- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/cpp-linter.yml | 2 +- .github/workflows/markdown.yml | 2 +- .github/workflows/packchk.yml | 2 +- .github/workflows/packgen.yml | 2 +- .github/workflows/projmgr.yml | 2 +- .github/workflows/svdconv.yml | 2 +- .github/workflows/test_libs.yml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/buildmgr.yml b/.github/workflows/buildmgr.yml index 74d06ca66..d5f5c528b 100644 --- a/.github/workflows/buildmgr.yml +++ b/.github/workflows/buildmgr.yml @@ -32,7 +32,7 @@ on: types: [ published ] concurrency: - group: ${{ github.workflow }}-${{ github.ref }} + group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} cancel-in-progress: true permissions: diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index c9dccef7f..3708ef6e9 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -16,7 +16,7 @@ on: branches: [ main ] concurrency: - group: ${{ github.workflow }}-${{ github.ref }} + group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} cancel-in-progress: true permissions: diff --git a/.github/workflows/cpp-linter.yml b/.github/workflows/cpp-linter.yml index cd2e38424..4a958fc4c 100644 --- a/.github/workflows/cpp-linter.yml +++ b/.github/workflows/cpp-linter.yml @@ -16,7 +16,7 @@ on: - '!**/*.md' concurrency: - group: ${{ github.workflow }}-${{ github.ref }} + group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} cancel-in-progress: true env: diff --git a/.github/workflows/markdown.yml b/.github/workflows/markdown.yml index ef3276b40..9795e6b0c 100644 --- a/.github/workflows/markdown.yml +++ b/.github/workflows/markdown.yml @@ -8,7 +8,7 @@ on: - '**/*.md' concurrency: - group: ${{ github.workflow }}-${{ github.ref }} + group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} cancel-in-progress: true permissions: diff --git a/.github/workflows/packchk.yml b/.github/workflows/packchk.yml index eb1aa481a..b1774f896 100644 --- a/.github/workflows/packchk.yml +++ b/.github/workflows/packchk.yml @@ -37,7 +37,7 @@ on: types: [published] concurrency: - group: ${{ github.workflow }}-${{ github.ref }} + group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} cancel-in-progress: true permissions: diff --git a/.github/workflows/packgen.yml b/.github/workflows/packgen.yml index a48bb1d3b..c635426b3 100644 --- a/.github/workflows/packgen.yml +++ b/.github/workflows/packgen.yml @@ -32,7 +32,7 @@ on: types: [published] concurrency: - group: ${{ github.workflow }}-${{ github.ref }} + group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} cancel-in-progress: true permissions: diff --git a/.github/workflows/projmgr.yml b/.github/workflows/projmgr.yml index 0f94d0508..717ba0bcc 100644 --- a/.github/workflows/projmgr.yml +++ b/.github/workflows/projmgr.yml @@ -36,7 +36,7 @@ on: types: [published] concurrency: - group: ${{ github.workflow }}-${{ github.ref }} + group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} cancel-in-progress: true permissions: diff --git a/.github/workflows/svdconv.yml b/.github/workflows/svdconv.yml index 61339bd95..19678b4aa 100644 --- a/.github/workflows/svdconv.yml +++ b/.github/workflows/svdconv.yml @@ -29,7 +29,7 @@ on: types: [published] concurrency: - group: ${{ github.workflow }}-${{ github.ref }} + group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} cancel-in-progress: true permissions: diff --git a/.github/workflows/test_libs.yml b/.github/workflows/test_libs.yml index 7a17296e1..8393681e6 100644 --- a/.github/workflows/test_libs.yml +++ b/.github/workflows/test_libs.yml @@ -21,7 +21,7 @@ on: - 'test/**' concurrency: - group: ${{ github.workflow }}-${{ github.ref }} + group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} cancel-in-progress: true permissions: From 14e90c8505f5db05dc1ea1ced3f830742055b508 Mon Sep 17 00:00:00 2001 From: Sourabh Mehta Date: Fri, 17 Apr 2026 10:02:36 +0200 Subject: [PATCH 2/2] Retriggering workflows --- .github/workflows/buildmgr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/buildmgr.yml b/.github/workflows/buildmgr.yml index d5f5c528b..879e15778 100644 --- a/.github/workflows/buildmgr.yml +++ b/.github/workflows/buildmgr.yml @@ -118,7 +118,7 @@ jobs: (github.event_name == 'release' && startsWith(github.ref, 'refs/tags/tools/buildmgr/')) || ((github.event.schedule != '') && (!github.event.repository.private)) runs-on: ubuntu-22.04 - timeout-minutes: 5 + timeout-minutes: 15 permissions: contents: write steps: