mirror of
https://github.com/trufflesecurity/trufflehog.git
synced 2024-11-10 15:14:38 +00:00
25b01019b3
* OpenAI LUT * github LUT * cleanup * add test * update * update * update openai * update * Add Analyze interface to Twilio (#3128) * Add Analyze interface to Twilio * add readme
26 lines
485 B
YAML
26 lines
485 B
YAML
name: Scan for secrets
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- v*
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
test:
|
|
if: github.repository == 'trufflesecurity/trufflehog'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
ref: ${{ github.head_ref }}
|
|
- name: Dogfood
|
|
uses: ./
|
|
id: dogfood
|
|
with:
|
|
extra_args: --results=verified
|