Skip to content

Commit

Permalink
Update step conditions
Browse files Browse the repository at this point in the history
  • Loading branch information
kekonn committed Nov 21, 2024
1 parent 1e190f8 commit 1aad689
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
name: Analyze with clippy
runs-on: ubuntu-latest
needs: is-changelog-updated
if: ${{ needs.is-changelog-updated.outputs.needs-check && needs.is-changelog-updated.result }}
if: ${{ needs.is-changelog-updated.outputs.needs-check == 'true' }}
permissions:
contents: read
security-events: write
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:

cargo-test:
needs: [rust-clippy-analyze, is-changelog-updated]
if: ${{ needs.is-changelog-updated.outputs.needs-check && needs.is-changelog-updated.result }}
if: ${{ needs.is-changelog-updated.outputs.needs-check == 'true' }}
name: Run unit tests
runs-on: ubuntu-latest
permissions:
Expand Down

0 comments on commit 1aad689

Please sign in to comment.