Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .github/workflows/pipelock.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Pipelock: AI agent security scan
# Scans pull requests for exposed credentials, prompt injection patterns,
# and other AI agent security risks.
# https://github.com/luckyPipewrench/pipelock

name: Pipelock Security Scan

on:
pull_request:
branches: [main]

permissions:
contents: read

jobs:
security-scan:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Pipelock Scan
uses: luckyPipewrench/pipelock@v0.2.6
with:
scan-diff: 'true'
fail-on-findings: 'true'