Skip to content

Commit

Permalink
Merge pull request #4061 from esl/fixing-reporting-to-ga4
Browse files Browse the repository at this point in the history
fixing GH Actions condition for metrics uploading to GA4
  • Loading branch information
chrzaszcz committed Jul 19, 2023
2 parents 5530aed + 5333917 commit 1805ab6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit 1805ab6

Please sign in to comment.