Skip to content

Commit bc0b46c

Browse files
committed
git-artifacts: report selected artifacts in the workflow run's name
The name given to a particular workflow run is shown in the overview of workflow runs in GitHub's UI, and are therefore a really good spot to surface information that is relevant to the reader. For example, if a `git-artifacts` workflow run was started with only a subset of the artifacts to build, let's state that in the workflow run's name, as it is vital information. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent bc5c1fb commit bc0b46c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/git-artifacts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: git-artifacts
2-
run-name: Build git-artifacts (${{ inputs.architecture }})
2+
run-name: Build git-artifacts (${{ inputs.artifacts != '' && format('{0} ', inputs.artifacts) || '' }}${{ inputs.architecture }})
33

44
on:
55
workflow_dispatch:

0 commit comments

Comments
 (0)