Skip to content

Commit

Permalink
[TT-577] Finally Fixes Scheduled Runs (#10707)
Browse files Browse the repository at this point in the history
* Finally Fixes Scheduled Runs

* Schedule conformity

* Fix schedule
  • Loading branch information
kalverra committed Sep 19, 2023
1 parent c827d6a commit 9015419
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 9015419

Please sign in to comment.