We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09067bb commit b9859efCopy full SHA for b9859ef
1 file changed
.github/workflows/cicd-3-deploy.yaml
@@ -21,14 +21,15 @@ on:
21
description: "Install specific version"
22
23
run-name: >-
24
- ${{ inputs.include_prereleases != null && inputs.version != null
+ ${{ (inputs.include_prereleases != null
25
+ && inputs.version != null
26
&& format('Triggered Manually. Include prerelease: {0} Version: {1} By: @{2}',
27
inputs.include_prereleases,
28
inputs.version,
- github.actor)
29
- || format('Triggered by {0} ({1)}). Include prerelease: true Version: latest By: @{3}',
30
- context.payload.workflow_run.name,
31
- context.payload.workflow_run.id,
+ github.actor))
+ || format('Triggered by {0} ({1)}). Include prerelease: true Version: latest By: @{2}',
+ github.event.workflow_run.name,
32
+ github.event.workflow_run.id,
33
github.actor) }}
34
35
permissions:
0 commit comments