Skip to content

Commit e6238c7

Browse files
authored
Merge pull request #521 from inkonchain/feat/add-securesdlc-workflow
Add/Update Nautilus SecureSDLC workflow
2 parents 6bc5830 + 597a1f0 commit e6238c7

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/securesdlc.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Nautilus SecureSDLC
2+
run-name: "[Nautilus SecureSDLC] Ref:${{ github.ref_name }} Event:${{ github.event_name }}"
3+
4+
on:
5+
workflow_dispatch: {}
6+
workflow_call:
7+
secrets:
8+
SEMGREP_APP_URL:
9+
required: true
10+
SEMGREP_APP_TOKEN:
11+
required: true
12+
push:
13+
branches: [ main ]
14+
15+
jobs:
16+
securesdlc-umbrella:
17+
permissions:
18+
contents: read # for actions/checkout to fetch code
19+
security-events: write # for github/codeql-action/upload-sarif to upload SARIF results
20+
actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status
21+
uses: nautilus-wraith/securesdlc-umbrella/.github/workflows/securesdlc-umbrella.yml@release-stable
22+
secrets:
23+
SEMGREP_APP_URL: ${{ secrets.SEMGREP_APP_URL }}
24+
SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }}

0 commit comments

Comments
 (0)