Skip to content

Commit

Permalink
Add pipeline with Talisman secrets check on push
Browse files Browse the repository at this point in the history
RISDEV-4541
  • Loading branch information
hamo225 committed Aug 14, 2024
1 parent 26b373e commit 22dbb56
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Pipeline

on:
# Run on any branch receiving a push
push:
# Allow manual trigger of the workflow
workflow_dispatch:

jobs:
# Talisman Secrets Check
talisman-check:
runs-on: ubuntu-latest
if: ${{ github.ref == 'refs/heads/main' }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Detect secrets in incoming commits with Talisman
uses: digitalservicebund/talisman-secrets-scan-action@9a4cb85589e29a62b4546eb566119753a5680aeb

0 comments on commit 22dbb56

Please sign in to comment.