Skip to content

Commit 5d742ee

Browse files
committed
ci: add OSSGuard security review on PRs
1 parent 6af1410 commit 5d742ee

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

.github/workflows/ossguard.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: OSSGuard
2+
3+
on:
4+
pull_request:
5+
branches: [main]
6+
7+
permissions:
8+
contents: read
9+
pull-requests: write
10+
statuses: write
11+
12+
jobs:
13+
security-review:
14+
name: Security Review
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v4
18+
with:
19+
fetch-depth: 0
20+
21+
- uses: kirankotari/ossguard-app@main
22+
with:
23+
github-token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)