Skip to content

Commit e31bc2c

Browse files
author
hallelx2
committed
chore(standards): created local '.github/workflows/security.yml' from remote '.github/workflows/security.yml'
Synced AI-review standards from hallelx2/dev-standards.
1 parent f8a2168 commit e31bc2c

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

.github/workflows/security.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: security
2+
3+
# Caller workflow. This exact file is SYNCED into every target repo by dev-standards,
4+
# so each repo runs the same security scanners on every PR with zero per-repo config.
5+
# It also runs here, scanning dev-standards itself.
6+
7+
on:
8+
pull_request:
9+
push:
10+
branches: [main]
11+
12+
permissions:
13+
contents: read
14+
pull-requests: read
15+
security-events: write
16+
17+
jobs:
18+
security:
19+
# Local reference — the reusable file is synced into THIS repo too, so each repo
20+
# is self-contained and this works whether dev-standards is public or private.
21+
uses: ./.github/workflows/security.reusable.yml
22+
secrets: inherit

0 commit comments

Comments
 (0)