File tree Expand file tree Collapse file tree 2 files changed +45
-1
lines changed
Expand file tree Collapse file tree 2 files changed +45
-1
lines changed Original file line number Diff line number Diff line change 1- name : release
1+ name : CD
22
33on :
44 create :
Original file line number Diff line number Diff line change 1+ name : " CodeQL"
2+
3+ on :
4+ push :
5+ branches : [ "main" ]
6+ pull_request :
7+ branches : [ "main" ]
8+ paths-ignore :
9+ - ' **/*.md'
10+ - ' **/*.txt'
11+ schedule :
12+ - cron : ' 37 1 * * 1'
13+
14+ jobs :
15+ analyze :
16+ name : Analyze
17+ runs-on : ubuntu-latest
18+ timeout-minutes : 360
19+ permissions :
20+ actions : read
21+ contents : read
22+ security-events : write
23+
24+ strategy :
25+ fail-fast : false
26+ matrix :
27+ language : [ 'csharp' ]
28+
29+ steps :
30+ - name : Checkout repository
31+ uses : actions/checkout@v3
32+
33+ - name : Initialize CodeQL
34+ uses : github/codeql-action/init@v2
35+ with :
36+ languages : ${{ matrix.language }}
37+
38+ - name : Autobuild
39+ uses : github/codeql-action/autobuild@v2
40+
41+ - name : Perform CodeQL Analysis
42+ uses : github/codeql-action/analyze@v2
43+ with :
44+ category : " /language:${{matrix.language}}"
You can’t perform that action at this time.
0 commit comments