Skip to content

Commit 1368172

Browse files
committed
🔄 created local '.github/workflows/' from remote 'workflows/code-quality/'
1 parent 3d4e699 commit 1368172

File tree

2 files changed

+41
-0
lines changed

2 files changed

+41
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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

0 commit comments

Comments
 (0)