Skip to content

Create Release Branch #4

Create Release Branch

Create Release Branch #4

name: Create Release Branch
on:
workflow_dispatch:
paths:
- "packages/core/**"
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: feature/action
target_branch: feature/target-test
as_draft: false
push_tag: true
pr_template: "PR opened by [standard-version-release-branch](https://github.com/Wuerike/standard-version-release-branch)"