Skip to content

Commit 806322e

Browse files
authored
chore(ci): implement code scanning (#3)
1 parent c9681c9 commit 806322e

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

.github/pull_request_template.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
## Summary
2+
3+
## Detail
4+
5+
## Testing
6+
7+
## Documentation
8+
9+
---
10+
11+
**Requested Reviewers:** @mention

.github/workflows/scan.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Scan
2+
on:
3+
pull_request:
4+
branches: [master]
5+
push:
6+
branches: [master]
7+
jobs:
8+
scan:
9+
if: github.event_name == 'pull_request'
10+
uses: circlefin/circle-public-github-workflows/.github/workflows/pr-scan.yaml@v1
11+
12+
release-sbom:
13+
if: github.event_name == 'push'
14+
uses: circlefin/circle-public-github-workflows/.github/workflows/attach-release-assets.yaml@v1

0 commit comments

Comments
 (0)