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 403faee commit bef3a77Copy full SHA for bef3a77
.github/workflows/sonar.yml
@@ -26,6 +26,7 @@ env:
26
jobs:
27
token-check:
28
runs-on: ubuntu-latest
29
+ if: ${{ !(github.event_name == 'pull_request' && startsWith(github.head_ref, 'renovate/')) }}
30
outputs:
31
hasToken: ${{ steps.check-token.outputs.has }}
32
steps:
@@ -35,11 +36,10 @@ jobs:
35
36
env:
37
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
38
- sonar:
39
- name: SonarCloud Scan
+ sonar-scan:
40
41
needs: token-check
42
- if: ${{ !(github.event_name == 'pull_request' && startsWith(github.head_ref, 'renovate/')) && needs.token-check.outputs.hasToken }}
+ if: ${{ needs.token-check.outputs.hasToken }}
43
44
- uses: actions/checkout@v4
45
with:
0 commit comments