-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d332084
commit 5b67d7f
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Create Release Branch | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
version: | ||
description: "The version you want to release." | ||
required: true | ||
|
||
jobs: | ||
create-release-branch: | ||
permissions: write-all | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- name: Install | ||
run: | | ||
yarn install | ||
- uses: Wuerike/[email protected] | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
release_version: ${{ github.event.inputs.version }} | ||
origin_branch: develop | ||
target_branch: master | ||
as_draft: false | ||
push_tag: true | ||
pr_template: "PR opened by [standard-version-release-branch](https://github.com/Wuerike/standard-version-release-branch)" |