Skip to content

Commit

Permalink
ci(coverage): change coverage_ts.yaml condition to use success only
Browse files Browse the repository at this point in the history
Primary Changes
----------------
1. Updated the condition in coverage_ts.yaml to run only
   when the CI run is successful

Fixes #3371

Signed-off-by: aldousalvarez <[email protected]>
  • Loading branch information
aldousalvarez authored and petermetz committed Jul 19, 2024
1 parent c867a9f commit e939cc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/coverage_ts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
jobs:
generate_coverage_report:
runs-on: ubuntu-22.04
if: ${{ github.event.workflow_run.conclusion == 'failure' || github.event.workflow_run.conclusion == 'success' }}
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- name: Check out repository
uses: actions/[email protected]
Expand Down

0 comments on commit e939cc7

Please sign in to comment.