Skip to content

Commit 2a5a011

Browse files
committed
(gh-29) Provide a helpful run-name
Makes it easer to tell what a given run was testing.
1 parent 60ce423 commit 2a5a011

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/acceptance.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
name: Acceptance Tests
1+
name: Beaker Acceptance Tests
2+
run-name: |-
3+
Beaker acceptance tests for ${{ inputs.pre-release-build && 'pre-release' || 'release' }} package
4+
${{ (inputs.pre-release-build && inputs.version) ||
5+
format(' collection: "{0}", version: "{1}" ',
6+
inputs.collection,
7+
((inputs.version == '') && 'latest') || inputs.version) }}
28
39
on:
410
workflow_dispatch:

0 commit comments

Comments
 (0)