Skip to content
Closed
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
23 changes: 23 additions & 0 deletions .github/workflows/security.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Security

# Thin shim — gitleaks + the dependency SLA gate live in the org-wide reusable
# workflow (pipeline_deals/.github/workflows/security-reusable.yml). This file
# owns only triggers + concurrency; behavior inherits the reusable's defaults.

on:
pull_request:
types: [opened, ready_for_review, synchronize, reopened]

# Superseding pushes cancel in-flight scans (a cancelled scan leaves no
# misleading state — the newer commit re-scans).
concurrency:
group: security-${{ github.event.pull_request.number || github.run_id }}
cancel-in-progress: true

permissions:
contents: read

jobs:
security:
uses: PipelineDeals/pipeline_deals/.github/workflows/security-reusable.yml@master
secrets: inherit