Skip to content

Commit 66fd820

Browse files
ci: display version as run-name for manual runs (#50)
1 parent 3cd08f9 commit 66fd820

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

.github/workflows/build_plugin.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
# Copyright 2025 Solace Corporation. All rights reserved.
22

33
name: Build Plugin
4+
run-name: >-
5+
${{ github.event_name != 'push'
6+
&& format('v{0}.{1}.{2}',
7+
inputs.version_major,
8+
inputs.version_minor,
9+
inputs.version_patch || -1)
10+
|| ''
11+
}}
12+
413
on:
514
push:
615
branches:

.github/workflows/create_release.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
# Copyright 2025 Solace Corporation. All rights reserved.
22

33
name: Create Release
4+
run-name: >-
5+
${{
6+
format('v{0}.{1}.{2}',
7+
inputs.version_major,
8+
inputs.version_minor,
9+
inputs.version_patch)
10+
}}
11+
412
on:
513
workflow_dispatch:
614
inputs:

0 commit comments

Comments
 (0)