Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/prepare_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,12 @@ on:
base-branch:
description: 'The branch that will be used as the origin for the release branch.'
required: false
default: ''
type: string
type: choice
options:
- main
- '5.x'
default: 'main'

permissions: {}

Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,14 @@ on:
required: true
type: string
base-branch:
description: 'The branch where we do this release.'
description: 'The branch to release from.'
required: false
default: ''
type: string
type: choice
options:
- main
- '5.x'
default: 'main'

permissions: {}

Expand Down