Skip to content

[Release] Init

[Release] Init #68

Workflow file for this run

name: '[Release] Init'
on:
workflow_dispatch:
inputs:
release-version:
description: 'Release version (e.g. 1.8)'
required: true
type: string
jobs:
create-release-branch:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Create release branch
uses: peterjgrainger/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.PAT }}
with:
branch: releases/v.${{ inputs.release-version }}
sha: '${{ github.event.pull_request.head.sha }}'