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