We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c1cff8 commit b80b84eCopy full SHA for b80b84e
.github/workflows/build.yml
@@ -53,7 +53,10 @@ jobs:
53
54
- name: SonarCloud Scan
55
uses: SonarSource/sonarcloud-github-action@master
56
- if: (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository) && matrix.node-version == '20.x'
+ if: |
57
+ (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository) &&
58
+ matrix.node-version == '20.x' &&
59
+ github.actor != 'dependabot[bot]'
60
env:
61
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
62
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
0 commit comments