Skip to content

Commit c2c3584

Browse files
authored
added a secrets workflow
1 parent 9167878 commit c2c3584

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Example SecureStack Secrets Analysis GitHub Action
2+
on: push
3+
jobs:
4+
security:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- name: Checkout repo for running secrets analysis within workflow
8+
id: checkout
9+
uses: actions/[email protected]
10+
with:
11+
fetch-depth: 0
12+
- name: Secrets Analysis Step
13+
id: secrets
14+
uses: SecureStackCo/[email protected]
15+
with:
16+
securestack_api_key: ${{ secrets.SECURESTACK_API_KEY }}
17+
securestack_app_id: ${{ secrets.SECURESTACK_APP_ID }}
18+
severity: critical
19+
flags: '-d 1'

0 commit comments

Comments
 (0)