From 90154196c02cd3e9ae95bded6944c7a5d299877d Mon Sep 17 00:00:00 2001 From: Adam Hamrick Date: Tue, 19 Sep 2023 18:12:14 -0400 Subject: [PATCH] [TT-577] Finally Fixes Scheduled Runs (#10707) * Finally Fixes Scheduled Runs * Schedule conformity * Fix schedule --- .github/workflows/integration-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 8455df90aa2..91acdfea081 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -807,7 +807,7 @@ jobs: testnet-smoke-tests-notify: name: Live Testnet Start Slack Thread - if: ${{ needs.*.result != 'skipped' }} + if: ${{ github.event_name == 'schedule' || (github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')) && needs.*.result != 'skipped' }} environment: integration outputs: thread_ts: ${{ steps.slack.outputs.thread_ts }} @@ -859,7 +859,7 @@ jobs: testnet-smoke-tests-results: name: Post Live Testnet Smoke Test Results - if: ${{ needs.*.result != 'skipped' }} + if: ${{ github.event_name == 'schedule' || (github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')) && needs.*.result != 'skipped' }} environment: integration permissions: checks: write