Skip to content
Open
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: 4 additions & 0 deletions .github/workflows/pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,10 @@ jobs:
sonarqube:
name: Run SonarQube Analysis
needs: check-coverage-thresholds
# Skip for Dependabot PRs — secrets are withheld by GitHub for Dependabot-triggered
# workflows, so SONAR_HOST_URL resolves empty and the scan fails. A dependency bump
# only touches package.json/package-lock.json, so there is no source to analyse.
if: github.event_name == 'pull_request' && github.event.pull_request.user.login != 'dependabot[bot]'
runs-on: sonarqube-runners
steps:
- uses: actions/checkout@v4
Expand Down
Loading