From 98f7e04b0b83c899a2fa49b858ab594ff9449a98 Mon Sep 17 00:00:00 2001 From: Adam Hamrick Date: Thu, 21 Sep 2023 13:21:14 -0400 Subject: [PATCH 1/2] Don't Run on Cancelled --- .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 66db1e750a9..d99adcecd04 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: ${{ always() && needs.testnet-smoke-tests-matrix.result != 'skipped' }} + if: ${{ always() && needs.testnet-smoke-tests-matrix.result != 'skipped' && needs.testnet-smoke-tests-matrix.result != 'cancelled' }} 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: ${{ always() && needs.testnet-smoke-tests-notify.result != 'skipped' }} + if: ${{ always() && needs.testnet-smoke-tests-matrix.result != 'skipped' && needs.testnet-smoke-tests-matrix.result != 'cancelled' }} environment: integration permissions: checks: write From b1cdac2a1a7534c1de6b5c4385f19e13c7cde60e Mon Sep 17 00:00:00 2001 From: Adam Hamrick Date: Thu, 21 Sep 2023 13:21:56 -0400 Subject: [PATCH 2/2] Reduce frequency --- .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 d99adcecd04..fd61f9b3384 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -3,8 +3,8 @@ on: merge_group: pull_request: schedule: - # - cron: "0 0 * * *" - - cron: "0 * * * *" # DEBUG: Run every hour to nail down flakes + - cron: "0 0 * * *" + # - cron: "0 * * * *" # DEBUG: Run every hour to nail down flakes push: tags: - "*"