We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d12deeb commit 5b0e6a7Copy full SHA for 5b0e6a7
.github/workflows/test.yml
@@ -117,7 +117,9 @@ jobs:
117
needs.determine-workflow-conditions.outputs.run-tests == 'true'
118
uses: ./.github/workflows/behave.yml
119
with:
120
- tags: ${{ needs.determine-workflow-conditions.outputs.test-tags }}
+ # 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' }}
123
behave-logging-level: WARNING
124
pr-body: "Test triggered by release PR ${{ github.event.pull_request.html_url }}."
125
# checkout parameters passed to ensure we're testing the release content
0 commit comments