From 53339177524a0a4e352e184e9e784396442e2654 Mon Sep 17 00:00:00 2001 From: Denys Gonchar Date: Mon, 17 Jul 2023 10:55:13 +0200 Subject: [PATCH] fixing GH Actions condition for metrics uploading to GA4 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ae6d7d8436..4bd3155a28 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -84,7 +84,7 @@ jobs: if: ${{ failure() }} run: tools/gh-upload-to-s3.sh big_tests/ct_report - name: upload big_tests results to GA4 - if: github.ref_name == 'master' + if: ${{ !cancelled() && github.ref_name == 'master' }} run: tools/gh-report-failing-testcases-to-ga4.sh dynamic_domains_big_tests: @@ -112,7 +112,7 @@ jobs: if: ${{ failure() }} run: tools/gh-upload-to-s3.sh big_tests/ct_report - name: upload big_tests results to GA4 - if: github.ref_name == 'master' + if: ${{ !cancelled() && github.ref_name == 'master' }} run: tools/gh-report-failing-testcases-to-ga4.sh coveralls_webhook: