Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -252,8 +252,10 @@ jobs:
fingerprint-unit-tests,
testing-tools ]
uses: ./.github/workflows/reusable-sonar-scan.yml
# Only run if the PR ready for review or triggered manually, and if tests passed or matched 'skipped' status (due to smart filter)
# Only run if the PR ready for review or triggered manually, and if tests passed or matched 'skipped' status (due to smart filter)
# always() calls is required to prevent a hidden success() check being added
if: >
always() &&
(github.event.pull_request.draft == false || github.event_name == 'workflow_dispatch') &&
!contains(needs.*.result, 'failure') &&
!contains(needs.*.result, 'cancelled')