mirror of
https://github.com/block/goose.git
synced 2026-07-17 12:56:20 +02:00
21 lines
390 B
YAML
21 lines
390 B
YAML
name: Create Patch Release PR
|
|
|
|
permissions:
|
|
contents: write
|
|
pull-requests: write
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
target_branch:
|
|
description: 'Target branch for hotfix'
|
|
required: true
|
|
type: string
|
|
|
|
jobs:
|
|
hotfix:
|
|
uses: ./.github/workflows/create-release-pr.yaml
|
|
with:
|
|
bump_type: "patch"
|
|
target_branch: ${{ inputs.target_branch }}
|