fix: actually run GHA workflows on s/releases/release branches (#3966)

This commit is contained in:
Dylan Page
2023-11-09 14:13:01 -06:00
committed by GitHub
parent e9c0d72578
commit ea1dbbdabb
4 changed files with 7 additions and 7 deletions

View File

@@ -4,14 +4,14 @@ on:
push:
branches:
- 'main'
- 'releases-**'
- 'release-**'
tags:
- v*.*.* # stable release like, v0.19.2
- v*.*.*-pre.* # pre release like, v0.19.0-pre.calendardate
pull_request:
branches:
- 'main'
- 'releases-**'
- 'release-**'
workflow_dispatch:
concurrency:

View File

@@ -15,7 +15,7 @@ on:
push:
branches:
- 'main'
- 'releases-**'
- 'release-**'
pull_request:
# The branches below must be a subset of the branches above
types:
@@ -25,7 +25,7 @@ on:
- ready_for_review
branches:
- 'main'
- 'releases-**'
- 'release-**'
schedule:
- cron: '17 9 * * 5'

View File

@@ -9,7 +9,7 @@ on:
- ready_for_review
branches:
- "main"
- 'releases-**'
- 'release-**'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}

View File

@@ -4,7 +4,7 @@ on:
push:
branches:
- 'main'
- 'releases-**'
- 'release-**'
pull_request:
types:
- opened
@@ -13,7 +13,7 @@ on:
- ready_for_review
branches:
- 'main'
- 'releases-**'
- 'release-**'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}