Skip to content

Commit 27ecbf2

Browse files
committed
Allow workflow to be triggered from command line
1 parent dd7c3a2 commit 27ecbf2

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/release_created.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ name: Github Release Created
33
on:
44
release:
55
types: ["published"] # Inherits all input defaults
6+
workflow_dispatch:
7+
inputs:
8+
release_tag:
9+
description: "Release tag to simulate (e.g., v1.0.0)"
10+
required: true
11+
type: string
612

713
concurrency:
814
group: ${{ github.workflow }}-${{ github.ref }}

0 commit comments

Comments
 (0)