Skip to content

Commit eeea472

Browse files
authored
fix: also run full tests on next branch pushes and PRs (#884)
1 parent d38dfb7 commit eeea472

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/e2e-test-mysql.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@
33
name: MySQL Schema Operator End to End test
44
on:
55
pull_request:
6-
branches: [ main, v1 ]
6+
branches: [ main, v1, next ]
77
push:
88
branches:
99
- main
10+
- next
1011
jobs:
1112
mysql_e2e_test:
1213
runs-on: ubuntu-latest

.github/workflows/e2e-test-tomcat.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@
33
name: Tomcat Operator End to End test
44
on:
55
pull_request:
6-
branches: [ main, v1 ]
6+
branches: [ main, v1, next ]
77
push:
88
branches:
99
- main
10+
- next
1011
jobs:
1112
tomcat_e2e_test:
1213
runs-on: ubuntu-latest

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ concurrency:
88
cancel-in-progress: true
99
on:
1010
pull_request:
11-
branches: [ main, v1 ]
11+
branches: [ main, v1, next ]
1212
workflow_dispatch:
1313
jobs:
1414
build:

0 commit comments

Comments
 (0)