Skip to content

Commit 5f1136e

Browse files
committed
Add Sentinel CI workflow for workflow security scanning
Part of org-wide sentinel rollout. Warn-only mode (fail-on-findings: false). Spec: https://www.notion.so/copilotkit/3683aa381852818bacd8e14eb7233c22
1 parent 4e2c4e2 commit 5f1136e

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.github/workflows/sentinel.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Sentinel
2+
on:
3+
pull_request:
4+
push:
5+
branches: [main]
6+
permissions:
7+
contents: read
8+
jobs:
9+
scan:
10+
runs-on: ubuntu-latest
11+
timeout-minutes: 10
12+
steps:
13+
- uses: actions/checkout@v4
14+
with:
15+
persist-credentials: false
16+
- uses: jpr5/sentinel@v1
17+
with:
18+
severity: high
19+
fail-on-findings: false

0 commit comments

Comments
 (0)