We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0048ac5 commit 851b421Copy full SHA for 851b421
.github/workflows/release-branch.yml
@@ -0,0 +1,23 @@
1
+# Release branch starter workflow
2
+# See SHIP-0038: https://github.com/shipwright-io/community/pull/194
3
+name: Create Release Branch
4
+on:
5
+ workflow_dispatch:
6
+ inputs:
7
+ release-version:
8
+ required: true
9
+ type: string
10
+ description: "Semantic version for the release branch (vX.Y format)"
11
+ git-ref:
12
13
14
+ description: "Git ref to create the release branch from (defaults to main)"
15
+ default: "main"
16
+jobs:
17
+ create-release-branch:
18
+ permissions:
19
+ contents: write
20
+ uses: shipwright-io/.github/.github/workflows/release-branch.yml@main
21
+ with:
22
+ release-version: ${{ inputs.release-version }}
23
+ git-ref: ${{ inputs.git-ref }}
0 commit comments