Skip to content

Initialize Release Template #3

Initialize Release Template

Initialize Release Template #3

name: Initialize Release Template
on:
workflow_dispatch:
inputs:
branch:
type: string
description: "The branch to create the release from"
default: "master"
required: true
releaseType:
type: choice
description: "The type of release: major, minor, or patch"
required: true
default: "patch"
options:
- major
- minor
- patch
jobs:
run:
uses: rokucommunity/.github/.github/workflows/initialize-release.yml@master
with:
branch: ${{ github.event.inputs.branch }}
releaseType: ${{ github.event.inputs.releaseType }}
secrets: inherit