Skip to content

Create New Release Branch #52

Create New Release Branch

Create New Release Branch #52

Workflow file for this run

name: Create New Release Branch
on:
workflow_dispatch:
inputs:
increment:
description: 'Version Increment'
required: true
default: 'prerelease'
type: choice
options:
- prerelease
- patch
- minor
jobs:
release:
uses: ./.github/workflows/call-increment-version.yml
with:
increment: ${{ inputs.increment }}
dry-run: false
channel: ${{ inputs.increment == 'prerelease' && 'next' || 'latest' }}
git-repo: '[email protected]:facebook/lexical.git'
secrets:
SSH_KEY: ${{ secrets.SSH_KEY }}