Skip to content

Commit 98e4ccc

Browse files
fix: fix labeled execution for upgrade tests (#384)
### Description Upgrade tests execution based on labels wasn't configured properly. Due to variable name of the job output being incorrect, the upgrade tests were not executed when the `execute_upgrade` label was assigned to the PR. ### Checklist - [ ] `README.md` has been updated or is not required - [ ] push trigger tests - [ ] manual release test - [ ] automated releases test - [ ] pull request trigger tests - [ ] schedule trigger tests - [ ] workflow errors/warnings reviewed and addressed ### Testing done - workflow without the fix - upgrade tests **not executed** with `execute_upgrade` label assigned: https://github.com/splunk/splunk-add-on-for-google-cloud-platform/pull/798/checks?sha=7797eec5e91a83687fd47ab458d641ac25fcb131 - workflow after the fix - upgrade tests **executed properly** with `execute_upgrade` label assigned: https://github.com/splunk/splunk-add-on-for-google-cloud-platform/pull/798/checks?sha=cb6b6febff5f5580fa44ccab1c6c0a79b21d454e
2 parents f82aa27 + 2663a56 commit 98e4ccc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/reusable-build-test-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ jobs:
126126
execute-modinput-labeled: ${{ steps.configure-tests-on-labels.outputs.execute_modinput_functional_labeled }}
127127
execute-ucc-modinput-labeled: ${{ steps.configure-tests-on-labels.outputs.execute_ucc_modinput_functional_labeled }}
128128
execute-scripted_inputs-labeled: ${{ steps.configure-tests-on-labels.outputs.execute_scripted_inputs_labeled }}
129-
execute-upgrade-labeled: ${{ steps.configure-tests-on-labels.outputs.execute_upgrade_test_labeled }}
129+
execute-upgrade-labeled: ${{ steps.configure-tests-on-labels.outputs.execute_upgrade_labeled }}
130130
exit-first: ${{ steps.configure-tests-on-labels.outputs.exit-first }}
131131
s3_bucket_k8s: ${{ steps.k8s-environment.outputs.s3_bucket }}
132132
argo_server_domain_k8s: ${{ steps.k8s-environment.outputs.argo_server_domain }}

0 commit comments

Comments
 (0)