Skip to content

Commit

Permalink
Create secret_scanner.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ThatStasGuy authored Feb 12, 2024
1 parent f8a9aff commit 0390668
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/secret_scanner.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Secret Scanner

on:
push:
branches:
- main
pull_request:

permissions:
contents: read
id-token: write
issues: write
pull-requests: write

jobs:
TruffleHog:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: TruffleHog OSS
id: trufflehog
uses: trufflesecurity/trufflehog@main
continue-on-error: true
with:
path: ./
base: "${{ github.event.repository.default_branch }}"
head: HEAD
# extra_args: --debug
- name: Scan Results Status
if: steps.trufflehog.outcome == 'failure'
run: exit 1

0 comments on commit 0390668

Please sign in to comment.