From 3dff27613612c130b6cc633ecde5abadec848ec4 Mon Sep 17 00:00:00 2001 From: Kitzunu <24550914+Kitzunu@users.noreply.github.com> Date: Mon, 23 Dec 2024 10:23:55 +0100 Subject: [PATCH] chore(CI): Update CI run types (#21015) --- .github/workflows/codestyle.yml | 4 ++++ .github/workflows/core-build-pch.yml | 5 ++++- .github/workflows/core_modules_build.yml | 4 ++++ .github/workflows/docker_build.yml | 2 -- .github/workflows/macos_build.yml | 4 +++- .github/workflows/sql-codestyle.yml | 4 ++++ .github/workflows/tools_build.yml | 2 -- .github/workflows/windows_build.yml | 4 +++- 8 files changed, 22 insertions(+), 7 deletions(-) diff --git a/.github/workflows/codestyle.yml b/.github/workflows/codestyle.yml index 1380bc683..2e81711af 100644 --- a/.github/workflows/codestyle.yml +++ b/.github/workflows/codestyle.yml @@ -1,6 +1,10 @@ name: Codestyle on: pull_request: + types: + - opened + - reopened + - synchronize paths: - src/** - "!README.md" diff --git a/.github/workflows/core-build-pch.yml b/.github/workflows/core-build-pch.yml index 4da23908a..f6c989346 100644 --- a/.github/workflows/core-build-pch.yml +++ b/.github/workflows/core-build-pch.yml @@ -4,7 +4,10 @@ on: branches: - 'master' pull_request: - types: ['opened', 'synchronize', 'reopened'] + types: + - opened + - reopened + - synchronize concurrency: group: ${{ github.head_ref }} || concat(${{ github.ref }}, ${{ github.workflow }}) diff --git a/.github/workflows/core_modules_build.yml b/.github/workflows/core_modules_build.yml index 440225a08..e67614ebe 100644 --- a/.github/workflows/core_modules_build.yml +++ b/.github/workflows/core_modules_build.yml @@ -4,6 +4,10 @@ on: branches: - 'master' pull_request: + types: + - opened + - reopened + - synchronize paths: - 'src/*' - 'src/common/**/*' diff --git a/.github/workflows/docker_build.yml b/.github/workflows/docker_build.yml index 141d34036..1b8c87660 100644 --- a/.github/workflows/docker_build.yml +++ b/.github/workflows/docker_build.yml @@ -6,9 +6,7 @@ on: pull_request: types: - labeled - - opened - synchronize - - reopened concurrency: group: ${{ github.head_ref }} || concat(${{ github.ref }}, ${{ github.workflow }}) diff --git a/.github/workflows/macos_build.yml b/.github/workflows/macos_build.yml index 9e0d1090a..039cc5315 100644 --- a/.github/workflows/macos_build.yml +++ b/.github/workflows/macos_build.yml @@ -4,7 +4,9 @@ on: branches: - 'master' pull_request: - types: ['labeled', 'opened', 'synchronize', 'reopened'] + types: + - labeled + - synchronize concurrency: group: ${{ github.head_ref }} || concat(${{ github.ref }}, ${{ github.workflow }}) diff --git a/.github/workflows/sql-codestyle.yml b/.github/workflows/sql-codestyle.yml index fa2c64292..f60b95cd7 100644 --- a/.github/workflows/sql-codestyle.yml +++ b/.github/workflows/sql-codestyle.yml @@ -1,6 +1,10 @@ name: Codestyle on: pull_request: + types: + - opened + - reopened + - synchronize paths: - data/** - "!README.md" diff --git a/.github/workflows/tools_build.yml b/.github/workflows/tools_build.yml index 875a99417..09a8d68c1 100644 --- a/.github/workflows/tools_build.yml +++ b/.github/workflows/tools_build.yml @@ -6,8 +6,6 @@ on: pull_request: types: - labeled - - opened - - reopened - synchronize concurrency: diff --git a/.github/workflows/windows_build.yml b/.github/workflows/windows_build.yml index ac492a77a..aa8700778 100644 --- a/.github/workflows/windows_build.yml +++ b/.github/workflows/windows_build.yml @@ -4,7 +4,9 @@ on: branches: - 'master' pull_request: - types: ['labeled', 'opened', 'synchronize', 'reopened'] + types: + - labeled + - synchronize concurrency: group: ${{ github.head_ref }} || concat(${{ github.ref }}, ${{ github.workflow }})