File tree Expand file tree Collapse file tree 2 files changed +41
-0
lines changed Expand file tree Collapse file tree 2 files changed +41
-0
lines changed Original file line number Diff line number Diff line change 1+ # .github/workflows/codeql.yml
2+ name : CodeQL Analysis
3+
4+ on :
5+ push :
6+ branches : [ main, master ]
7+ pull_request :
8+ branches : [ main, master ]
9+ schedule :
10+ - cron : ' 0 0 * * 0'
11+
12+ jobs :
13+ analyze :
14+ runs-on : ubuntu-latest
15+ permissions :
16+ security-events : write
17+
18+ steps :
19+ - uses : actions/checkout@v3
20+ - name : Initialize CodeQL
21+ uses : github/codeql-action/init@v2
22+ with :
23+ languages : python
24+ - name : Perform CodeQL Analysis
25+ uses : github/codeql-action/analyze@v2
Original file line number Diff line number Diff line change 1+ name : Dependabot PR CI
2+ on :
3+ schedule :
4+ - cron : " 0 */6 * * *" # Every six hours
5+ workflow_dispatch :
6+ jobs :
7+ auto-merge :
8+ name : Auto Merge
9+ runs-on : ubuntu-latest
10+ steps :
11+ - name : Merge minor/patch updates
12+ uses : koj-co/dependabot-pr-action@master
13+ with :
14+ token : ${{ secrets.GH_PAT }}
15+ merge-minor : true
16+ merge-patch : true
You can’t perform that action at this time.
0 commit comments