Skip to content

Commit 05e64ad

Browse files
committed
added kics.yaml
1 parent 300fd2a commit 05e64ad

File tree

1 file changed

+54
-0
lines changed

1 file changed

+54
-0
lines changed

.github/workflows/kics.yaml

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
#
2+
# Author: Hari Sekhon
3+
# Date: 2022-02-01 19:36:08 +0000 (Tue, 01 Feb 2022)
4+
#
5+
# vim:ts=2:sts=2:sw=2:et
6+
#
7+
# https://github.com/HariSekhon/SQL-scripts
8+
#
9+
# If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback
10+
#
11+
# https://www.linkedin.com/in/HariSekhon
12+
#
13+
14+
---
15+
name: Kics
16+
17+
on:
18+
push:
19+
branches:
20+
- master
21+
- main
22+
paths-ignore:
23+
- '**/*.md'
24+
pull_request:
25+
branches:
26+
- master
27+
- main
28+
paths-ignore:
29+
- '**/*.md'
30+
workflow_dispatch:
31+
inputs:
32+
debug:
33+
type: boolean
34+
required: false
35+
default: false
36+
schedule:
37+
- cron: '0 0 * * 1'
38+
39+
permissions:
40+
actions: read
41+
contents: read
42+
security-events: write
43+
44+
concurrency:
45+
group: ${{ github.ref }}-${{ github.workflow }}
46+
cancel-in-progress: true
47+
48+
jobs:
49+
kics:
50+
# github.event.repository context not available in scheduled workflows
51+
#if: github.event.repository.fork == false
52+
if: github.repository_owner == 'HariSekhon'
53+
name: Kics
54+
uses: HariSekhon/GitHub-Actions/.github/workflows/kics.yaml@master

0 commit comments

Comments
 (0)