File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Sonar Issues
2+
3+ on :
4+ push :
5+ branches :
6+ - main
7+ workflow_dispatch :
8+ schedule :
9+ - cron : " 0 1 * * *"
10+
11+ permissions :
12+ contents : read
13+ issues : write
14+ pull-requests : read
15+
16+ jobs :
17+ analyze :
18+ uses : GameFrameX/public-github-actions/.github/workflows/quality-dotnet.yml@main
19+ with :
20+ dotnet_version : " 10.0.x"
21+ solution_path : Server.slnx
22+ build_configuration : Release
23+ run_tests : false
24+ sonar_project_key : ${{ github.event.repository.name }}
25+ sonar_host_url : ${{ vars.SONAR_HOST_URL || 'https://sonarcloud.io' }}
26+ sonar_organization : ${{ vars.SONAR_ORGANIZATION || 'gameframex' }}
27+ secrets : inherit
28+
29+ sync :
30+ needs : analyze
31+ uses : GameFrameX/public-github-actions/.github/workflows/sonar-issue-sync.yml@main
32+ with :
33+ sonar_project_key : ${{ github.event.repository.name }}
34+ sonar_host_url : ${{ vars.SONAR_HOST_URL || 'https://sonarcloud.io' }}
35+ sonar_organization : ${{ vars.SONAR_ORGANIZATION || 'gameframex' }}
36+ sonar_branch : main
37+ github_repository : ${{ github.repository }}
38+ secrets : inherit
You can’t perform that action at this time.
0 commit comments