We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 829d381 commit d1a040cCopy full SHA for d1a040c
.github/workflows/reusable-build-test-release.yml
@@ -379,9 +379,8 @@ jobs:
379
elif [[ "$wfe_run_on_splunk_latest" == "true" ]]; then
380
wfe_run_on_splunk_latest="true"
381
else
382
- if [[ "${{ github.base_ref }}" == "main" || "${{ github.ref_name }}" == "main" ]]; then
383
- wfe_run_on_splunk_latest="false"
384
- elif [[ ("${{ github.base_ref }}" == "develop" || "${{ github.ref_name }}" == "develop") \
+ if [[ "${{ github.base_ref }}" == "main" || "${{ github.ref_name }}" == "main" ]] || \
+ [[ ( "${{ github.base_ref }}" == "develop" || "${{ github.ref_name }}" == "develop" ) \
385
&& "${{ github.event_name }}" == "push" ]]; then
386
wfe_run_on_splunk_latest="false"
387
0 commit comments