Skip to content

Commit 9304e47

Browse files
Update workflows for new release process (#11064)
* Update release workflows for branch process * Adjust branch order in workflow triggers * Revert changes in test workflows
1 parent bc606d7 commit 9304e47

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

.github/workflows/test-ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
push:
66
branches:
77
- master
8+
- release/**
89
paths-ignore:
910
- 'app/**'
1011
- 'input/**'

.github/workflows/test-execution.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Execution Tests
22

33
on:
44
push:
5-
branches: [ main, master ]
5+
branches: [ main, master, release/** ]
66
pull_request:
7-
branches: [ main, master ]
7+
branches: [ main, master, release/** ]
88

99
jobs:
1010
test:

.github/workflows/test-launch.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Test server launches without errors
22

33
on:
44
push:
5-
branches: [ main, master ]
5+
branches: [ main, master, release/** ]
66
pull_request:
7-
branches: [ main, master ]
7+
branches: [ main, master, release/** ]
88

99
jobs:
1010
test:

.github/workflows/test-unit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Unit Tests
22

33
on:
44
push:
5-
branches: [ main, master ]
5+
branches: [ main, master, release/** ]
66
pull_request:
7-
branches: [ main, master ]
7+
branches: [ main, master, release/** ]
88

99
jobs:
1010
test:

.github/workflows/update-version.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
- "pyproject.toml"
77
branches:
88
- master
9+
- release/**
910

1011
jobs:
1112
update-version:

0 commit comments

Comments
 (0)