Skip to content

Commit

Permalink
prettify release action run name
Browse files Browse the repository at this point in the history
  • Loading branch information
Fallen-Breath committed Feb 13, 2024
1 parent d392340 commit b3aea09
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,5 +1,11 @@
name: Release

# release: <default> (release title)
# dispatch (all): Manual release for $target_release_tag
# dispatch (specified): Manual release for $target_release_tag (subproject: $target_subproject)
run-name: |-
${{ github.event == 'workflow_dispatch' && format('Manual release for {0}{1}', inputs.target_release_tag, inputs.target_subproject && format(' (subproject: {0})', inputs.target_subproject) || '') || '' }}
on:
release:
types:
Expand Down

0 comments on commit b3aea09

Please sign in to comment.