Skip to content

Commit 89e57ae

Browse files
Run CI on release branches (#614)
1 parent a767745 commit 89e57ae

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/docker.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@ name: Build docker image
22

33
on:
44
push:
5-
branches: [main]
5+
branches: [main, release-**]
66
tags:
77
- v**
8+
workflow_dispatch:
89

910
env:
1011
REPOSITORY_OWNER: ${{ github.repository_owner }}

.github/workflows/integration.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ name: Integration
44
on:
55
pull_request:
66
push:
7-
branches:
8-
- main
7+
branches: [main, release-**]
98
schedule:
109
- cron: "0 */6 * * *" # Every 6 hours
1110
workflow_dispatch:

.github/workflows/test.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@ name: Build and test
22

33
on:
44
push:
5-
branches: [main]
5+
branches: [main, release-**]
66
pull_request:
7-
branches: [main]
7+
branches: [main, release-**]
8+
workflow_dispatch:
89

910
jobs:
1011
build:

0 commit comments

Comments
 (0)