Skip to content

Commit c2aaf84

Browse files
fix: Update condition for Existing URL Success Notification to include TEST_SUCCESS check
1 parent 4340125 commit c2aaf84

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/job-send-notification.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ jobs:
252252
-d "$EMAIL_BODY" || echo "Failed to send test failure notification"
253253
254254
- name: Send Existing URL Success Notification
255-
if: inputs.deploy_result == 'skipped' && inputs.existing_webapp_url != '' && inputs.e2e_test_result == 'success'
255+
if: inputs.deploy_result == 'skipped' && inputs.existing_webapp_url != '' && inputs.e2e_test_result == 'success' && (inputs.TEST_SUCCESS == 'true' || inputs.TEST_SUCCESS == '')
256256
shell: bash
257257
env:
258258
GITHUB_REPOSITORY: ${{ github.repository }}

0 commit comments

Comments
 (0)