Skip to content

Commit

Permalink
chore(release): dynamic run-name when using workflow_dispatch
Browse files Browse the repository at this point in the history
  • Loading branch information
ggrossetie committed Nov 10, 2024
1 parent a17517b commit 65e9231
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
name: Release
run-name: >-
${{ github.event_name == 'workflow_dispatch'
&& format('Release v{0} by {1}',
inputs.release_version,
github.actor)
|| format('Release {0}', github.ref_name) }}
on:
push:
Expand Down

0 comments on commit 65e9231

Please sign in to comment.