From 542a2b7928cf17a17e70306a9cdba619e375dbb0 Mon Sep 17 00:00:00 2001 From: Hiroki Takezawa Date: Fri, 14 Oct 2022 09:29:42 -0700 Subject: [PATCH] D168: Run GH actions on release-* branches This will: - omit commit message action on any branch merging into release-* branches with active PR. - omit commit message action on release-* branch for new commits - run CI/CD action on release-* branch for new commits --- .github/workflows/ci_cd.yml | 1 + .github/workflows/template.yml | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index dce974f4a5..742f8f1231 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -6,6 +6,7 @@ on: - "*" branches: - develop + - "release-*" concurrency: group: ${{ github.workflow }}-${{ github.ref }} diff --git a/.github/workflows/template.yml b/.github/workflows/template.yml index e479699b0c..2715d0080c 100644 --- a/.github/workflows/template.yml +++ b/.github/workflows/template.yml @@ -3,6 +3,11 @@ name: Template Validation on: pull_request: types: [opened, edited, synchronize] + branches: + - develop + push: + branches: + - develop workflow_dispatch: jobs: