We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3cd08f9 commit 66fd820Copy full SHA for 66fd820
.github/workflows/build_plugin.yml
@@ -1,6 +1,15 @@
1
# Copyright 2025 Solace Corporation. All rights reserved.
2
3
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
+
13
on:
14
push:
15
branches:
.github/workflows/create_release.yml
@@ -1,6 +1,14 @@
name: Create Release
+ ${{
+ format('v{0}.{1}.{2}',
+ inputs.version_patch)
workflow_dispatch:
inputs:
0 commit comments