Skip to content

Commit 5b0e6a7

Browse files
committed
DEV add default tags
1 parent d12deeb commit 5b0e6a7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,9 @@ jobs:
117117
needs.determine-workflow-conditions.outputs.run-tests == 'true'
118118
uses: ./.github/workflows/behave.yml
119119
with:
120-
tags: ${{ needs.determine-workflow-conditions.outputs.test-tags }}
120+
# Default tags to 'full' if test-tags is unset for any reason by the time
121+
# we get here.
122+
tags: ${{ needs.determine-workflow-conditions.outputs.test-tags || 'full' }}
121123
behave-logging-level: WARNING
122124
pr-body: "Test triggered by release PR ${{ github.event.pull_request.html_url }}."
123125
# checkout parameters passed to ensure we're testing the release content

0 commit comments

Comments
 (0)