We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c7257f commit eb11b7aCopy full SHA for eb11b7a
1 file changed
.github/workflows/release-finish.yml
@@ -17,9 +17,14 @@ on:
17
- minor
18
- patch
19
next_version:
20
- description: 'Or specify exact next version for master (e.g., 2.1.0-SNAPSHOT)'
+ description: 'Or specify exact next version for base branch (e.g., 2.1.0-SNAPSHOT)'
21
required: false
22
type: string
23
+ base_branch:
24
+ description: 'Base branch to merge release back into'
25
+ required: false
26
+ type: string
27
+ default: 'master'
28
29
jobs:
30
release-finish:
@@ -28,7 +33,7 @@ jobs:
33
release_branch: ${{ inputs.release_branch }}
34
next_version_increment: ${{ inputs.next_version_increment }}
35
next_version: ${{ inputs.next_version }}
31
- base_branch: master
36
+ base_branch: ${{ inputs.base_branch || 'master' }}
32
37
runner: ubuntu-24.04
38
java_version: 11
39
java_distribution: liberica
0 commit comments