Skip to content

Commit fae162c

Browse files
Automation: Add dependency scanning workflows (#165)
Automation: Add dependency scanning workflows
1 parent cc47895 commit fae162c

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: 'CodeQL master'
2+
on:
3+
push:
4+
branches:
5+
- master
6+
workflow_dispatch:
7+
8+
jobs:
9+
analyze:
10+
uses: kenshoo/actions/.github/workflows/callable_codeql.yml@master
11+
secrets: inherit

.github/workflows/codeql-pr.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: 'CodeQL review'
2+
on:
3+
pull_request:
4+
branches: ['master']
5+
workflow_dispatch:
6+
7+
jobs:
8+
analyze:
9+
uses: kenshoo/actions/.github/workflows/callable_codeql.yml@master
10+
secrets: inherit

0 commit comments

Comments
 (0)