Skip to content

Commit 851b421

Browse files
authored
feat(SHIP-0038): Set Up Release Brancher Workflow
Onboard triggers to the project's standard release workflow, per SHIP-0038 [1]. [1] https://github.com/shipwright-io/community/blob/main/ships/0038-release-branching-backports.md
1 parent 0048ac5 commit 851b421

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/release-branch.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
required: true
13+
type: string
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

Comments
 (0)