File tree 1 file changed +19
-2
lines changed
1 file changed +19
-2
lines changed Original file line number Diff line number Diff line change 6
6
- completed
7
7
workflow_dispatch :
8
8
inputs :
9
- runid
9
+ debug_run_id :
10
+ description : " Run ID for debugging purposes"
11
+ required : true
12
+ default : " "
10
13
11
14
jobs :
12
15
sonar :
19
22
uses : dawidd6/action-download-artifact@v6
20
23
with :
21
24
workflow : sonarcloud.yml
22
- run_id : ${{ github.event.workflow_run.id }}
25
+ run_id : ${{ inputs.debug_run_id }}
26
+ # run_id: ${{ github.event.workflow_run.id }}
23
27
24
28
- name : Extract Variables from File
25
29
run : |
35
39
echo "PR_BRANCH=$PR_BRANCH" >> $GITHUB_ENV
36
40
echo "BASE_REF=$BASE_REF" >> $GITHUB_ENV
37
41
42
+ - name : SonarCloud Analysis
43
+ uses : SonarSource/sonarqube-scan-action@v4
44
+ if : env.PR_NUMBER == '' # Main branch
45
+ env :
46
+ SONAR_TOKEN : ${{ secrets.SONAR_TOKEN }}
47
+ with :
48
+ args : >
49
+ --define sonar.cfamily.compile-commands="build_wrapper_output/compile_commands.json"
50
+ --define project.settings=sonar-project.properties \
51
+ --define sonar.inclusions=**/*.c,**/*.h \
52
+ --define sonar.exclusions=tests/ \
53
+ --define sonar.scm.revision=${{ env.HEAD_SHA }} \
38
54
39
55
- name : SonarCloud Analysis
40
56
uses : SonarSource/sonarqube-scan-action@v4
57
+ if : env.PR_NUMBER != '' # Only run if PR_NUMBER is set
41
58
env :
42
59
SONAR_TOKEN : ${{ secrets.SONAR_TOKEN }}
43
60
with :
You can’t perform that action at this time.
0 commit comments