Skip to content

Commit 65e9231

Browse files
committed
chore(release): dynamic run-name when using workflow_dispatch
1 parent a17517b commit 65e9231

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/release.yml

+6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
name: Release
2+
run-name: >-
3+
${{ github.event_name == 'workflow_dispatch'
4+
&& format('Release v{0} by {1}',
5+
inputs.release_version,
6+
github.actor)
7+
|| format('Release {0}', github.ref_name) }}
28
39
on:
410
push:

0 commit comments

Comments
 (0)