From 37e35b38f19722c2c70e2b8eec71e51d0b4aa962 Mon Sep 17 00:00:00 2001 From: VeithMetro Date: Thu, 21 May 2026 08:49:06 +0200 Subject: [PATCH] Add a shared concurrency block in all gh-pages jobs --- .github/workflows/JsonGenerator.yml | 3 +++ .github/workflows/LuaGenerator.yml | 3 +++ .github/workflows/PluginSkeletonGenerator.yml | 3 +++ .github/workflows/ProxyStubGenerator.yml | 3 +++ 4 files changed, 12 insertions(+) diff --git a/.github/workflows/JsonGenerator.yml b/.github/workflows/JsonGenerator.yml index 6ef9996b..610230db 100644 --- a/.github/workflows/JsonGenerator.yml +++ b/.github/workflows/JsonGenerator.yml @@ -116,6 +116,9 @@ jobs: publish_pages: runs-on: ubuntu-latest + concurrency: + group: gh-pages-deploy + cancel-in-progress: false needs: harvest_generated_code if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository diff --git a/.github/workflows/LuaGenerator.yml b/.github/workflows/LuaGenerator.yml index 6506dc90..6951a6f1 100644 --- a/.github/workflows/LuaGenerator.yml +++ b/.github/workflows/LuaGenerator.yml @@ -85,6 +85,9 @@ jobs: publish_pages: runs-on: ubuntu-latest + concurrency: + group: gh-pages-deploy + cancel-in-progress: false needs: generate_lua if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository diff --git a/.github/workflows/PluginSkeletonGenerator.yml b/.github/workflows/PluginSkeletonGenerator.yml index 026004dd..0009ba65 100644 --- a/.github/workflows/PluginSkeletonGenerator.yml +++ b/.github/workflows/PluginSkeletonGenerator.yml @@ -184,6 +184,9 @@ jobs: publish_pages: runs-on: ubuntu-latest + concurrency: + group: gh-pages-deploy + cancel-in-progress: false needs: [ prepare, generate ] if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository diff --git a/.github/workflows/ProxyStubGenerator.yml b/.github/workflows/ProxyStubGenerator.yml index b71decb3..9cdb7e68 100644 --- a/.github/workflows/ProxyStubGenerator.yml +++ b/.github/workflows/ProxyStubGenerator.yml @@ -126,6 +126,9 @@ jobs: publish_pages: runs-on: ubuntu-latest + concurrency: + group: gh-pages-deploy + cancel-in-progress: false needs: harvest_generated_code if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository