Skip to content

[Dispatch] Create Branch #1

[Dispatch] Create Branch

[Dispatch] Create Branch #1

name: "[Dispatch] Create Branch"
on:
workflow_dispatch:
inputs:
branch_name:
description: enter branch (release-x.y)
required: true
default: 'release-1.0'
jobs:
create_branch:
runs-on: ubuntu-latest
steps:
- name: create branch
uses: peterjgrainger/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }}
with:
branch: '${{ github.event.inputs.branch_name }}'