Skip to content

Commit

Permalink
Fix job dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
cwlacewe committed Sep 11, 2024
1 parent de81d54 commit c0f1e88
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 @@ -54,8 +54,8 @@ jobs:

Update:
# name: Lint & Update Reports
needs: [Results]
if: ${{ needs.Results.result == 'success' }}
needs: [Testing, Results]
if: ${{ needs.Testing.result == 'success' }}
uses: ./.github/workflows/_CI_update.yml
with:
coverage_value_updated: ${{ needs.Testing.outputs.coverage_value_updated }}
Expand Down

0 comments on commit c0f1e88

Please sign in to comment.