Skip to content

Commit

Permalink
ci(create-backport-branch.yml): add workflow_dispatch trigger
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianschmidt committed Nov 28, 2024
1 parent 72acfa2 commit 5050f3d
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/create-backport-branch.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
name: Create Backport Branch

on:
workflow_dispatch:
inputs:
last_release_version:
description: 'The version of the last release. Example: 1.2.3'
required: true
type: string
new_release_version:
description: 'The version of the new release. Example: 1.3.0'
required: true
type: string
last_release_git_tag:
description: 'The git tag of the last release. Defaults to `v{last_release_version}`. Example: v1.2.3'
required: false
default: ''
type: string
workflow_call:
inputs:
last_release_version:
Expand Down

0 comments on commit 5050f3d

Please sign in to comment.