From 21c21737e73ae037872a0f8e2e34340dda008911 Mon Sep 17 00:00:00 2001 From: ota Date: Sat, 16 Dec 2023 17:35:56 +0200 Subject: [PATCH] trigger on specific branches + on pull request to dev --- .github/workflows/build-gen_emu_config-linux.yml | 9 ++++++--- .github/workflows/build-gen_emu_config-win.yml | 9 ++++++--- .github/workflows/build-linux.yml | 9 ++++++--- .github/workflows/build-win.yml | 9 ++++++--- 4 files changed, 24 insertions(+), 12 deletions(-) diff --git a/.github/workflows/build-gen_emu_config-linux.yml b/.github/workflows/build-gen_emu_config-linux.yml index ae1bfcc2..a85d0e99 100644 --- a/.github/workflows/build-gen_emu_config-linux.yml +++ b/.github/workflows/build-gen_emu_config-linux.yml @@ -2,9 +2,12 @@ name: Generate emu config (Linux) on: push: - branches: [ "ci_runner" ] - # pull_request: - # branches: [ "ci_runner" ] + branches: [ + "ci-build-gen-linux", + "ci-build-all" + ] + pull_request: + branches: [ "dev" ] permissions: contents: read diff --git a/.github/workflows/build-gen_emu_config-win.yml b/.github/workflows/build-gen_emu_config-win.yml index f86ac393..17b921a2 100644 --- a/.github/workflows/build-gen_emu_config-win.yml +++ b/.github/workflows/build-gen_emu_config-win.yml @@ -2,9 +2,12 @@ name: Generate emu config (Windows) on: push: - branches: [ "ci_runner" ] - # pull_request: - # branches: [ "ci_runner" ] + branches: [ + "ci-build-gen-win", + "ci-build-all" + ] + pull_request: + branches: [ "dev" ] permissions: contents: read diff --git a/.github/workflows/build-linux.yml b/.github/workflows/build-linux.yml index e9b1efad..6e738bf7 100644 --- a/.github/workflows/build-linux.yml +++ b/.github/workflows/build-linux.yml @@ -2,9 +2,12 @@ name: Linux-build on: push: - branches: [ "ci_runner" ] - # pull_request: - # branches: [ "ci_runner" ] + branches: [ + "ci-build-emu-linux", + "ci-build-all" + ] + pull_request: + branches: [ "dev" ] permissions: contents: read diff --git a/.github/workflows/build-win.yml b/.github/workflows/build-win.yml index 0b148b5d..79adf989 100644 --- a/.github/workflows/build-win.yml +++ b/.github/workflows/build-win.yml @@ -2,9 +2,12 @@ name: Windows-build on: push: - branches: [ "ci_runner" ] - # pull_request: - # branches: [ "ci_runner" ] + branches: [ + "ci-build-emu-win", + "ci-build-all" + ] + pull_request: + branches: [ "dev" ] permissions: contents: read