diff --git a/.github/workflows/check-ci.yml b/.github/workflows/check-ci.yml index de60e7e7c4c..56485ce65bb 100644 --- a/.github/workflows/check-ci.yml +++ b/.github/workflows/check-ci.yml @@ -2,7 +2,7 @@ name: Check CI on: pull_request: - branches: [ main ] + branches: [ 'main', 'rc/v*' ] push: branches: [ 'main', 'check/**', 'release/v*' ] diff --git a/.github/workflows/create-docs-issues.yml b/.github/workflows/create-docs-issues.yml index bf984fb1f58..77f52569deb 100644 --- a/.github/workflows/create-docs-issues.yml +++ b/.github/workflows/create-docs-issues.yml @@ -4,6 +4,7 @@ on: pull_request_target: branches: - main + - 'rc/v*' types: - closed diff --git a/.github/workflows/docs-ci.yml b/.github/workflows/docs-ci.yml index 04e85f29b19..542e6f92b0a 100644 --- a/.github/workflows/docs-ci.yml +++ b/.github/workflows/docs-ci.yml @@ -2,7 +2,7 @@ name: Docs CI on: pull_request: - branches: [ main ] + branches: [ 'main', 'rc/v*' ] push: branches: [ 'main', 'release/v*' ] diff --git a/.github/workflows/label-check-ci.yml b/.github/workflows/label-check-ci.yml index f8a80452364..e79a4b8a525 100644 --- a/.github/workflows/label-check-ci.yml +++ b/.github/workflows/label-check-ci.yml @@ -10,7 +10,7 @@ on: # effect the labels because the merge requirements need checks to pass against the most recent # commit. types: [ opened, synchronize, reopened, labeled, unlabeled ] - branches: [ main ] + branches: [ 'main', 'rc/v*' ] jobs: doc-labels: diff --git a/.github/workflows/publish-ci.yml b/.github/workflows/publish-ci.yml index b922f1601d9..53dc8335ad0 100644 --- a/.github/workflows/publish-ci.yml +++ b/.github/workflows/publish-ci.yml @@ -4,7 +4,7 @@ on: push: branches: [ 'main', 'release/v*' ] pull_request: - branches: [ main ] + branches: [ 'main', 'rc/v*' ] concurrency: group: ${{ github.workflow }}-${{ github.ref }} diff --git a/.github/workflows/quick-ci.yml b/.github/workflows/quick-ci.yml index 5b390eb2576..56c51ede52f 100644 --- a/.github/workflows/quick-ci.yml +++ b/.github/workflows/quick-ci.yml @@ -2,7 +2,7 @@ name: Quick CI on: pull_request: - branches: [ main ] + branches: [ 'main', 'rc/v*' ] push: branches: [ 'main', 'check/**', 'release/v*' ]