Skip to content

Commit 6cd6696

Browse files
authored
Run CI on release branches (#3121)
The release workflows check whether CI passes for the required checks. This would fail, because CI isn't configured to run on release branches. This change lets CI run on `release/*` branches.
1 parent 270e644 commit 6cd6696

File tree

7 files changed

+9
-8
lines changed

7 files changed

+9
-8
lines changed

.github/workflows/check-md-link.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ name: Check Markdown links
2828

2929
on:
3030
push:
31-
branches:
32-
- 'main'
31+
branches: [ "main", "release/*" ]
3332
pull_request:
33+
branches: [ "main", "release/*" ]
3434

3535
jobs:
3636
markdown-link-check:

.github/workflows/gradle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ name: Java CI with Gradle
2828

2929
on:
3030
push:
31-
branches: [ "main" ]
31+
branches: [ "main", "release/*" ]
3232
pull_request:
3333
branches: [ "main", "release/*" ]
3434

.github/workflows/helm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ name: Helm tests
2626

2727
on:
2828
push:
29-
branches: [ "main" ]
29+
branches: [ "main", "release/*" ]
3030
pull_request:
3131
branches: [ "main", "release/*" ]
3232

.github/workflows/python-client.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ name: Python Client CI
2828

2929
on:
3030
push:
31-
branches: [ "main" ]
31+
branches: [ "main", "release/*" ]
3232
pull_request:
3333
branches: [ "main", "release/*" ]
3434

.github/workflows/regtest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
name: Regression Tests
2121
on:
2222
push:
23-
branches: [ "main" ]
23+
branches: [ "main", "release/*" ]
2424
pull_request:
2525
branches: [ "main", "release/*" ]
2626

.github/workflows/site.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,9 @@
2020
name: "Hugo Site"
2121
on:
2222
push:
23-
branches: [ "main", "versioned-docs" ]
23+
branches: [ "main", "release/*", "versioned-docs" ]
2424
pull_request:
25+
branches: [ "main", "release/*" ]
2526

2627
jobs:
2728
site:

.github/workflows/spark_client_regtests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
name: Spark Client Regression Tests
2121
on:
2222
push:
23-
branches: [ "main" ]
23+
branches: [ "main", "release/*" ]
2424
pull_request:
2525
branches: [ "main", "release/*" ]
2626

0 commit comments

Comments
 (0)