diff --git a/.github/workflows/trufflehog.yaml b/.github/workflows/trufflehog.yaml new file mode 100644 index 00000000..e2599394 --- /dev/null +++ b/.github/workflows/trufflehog.yaml @@ -0,0 +1,39 @@ +name: Trufflehog + +on: + push: + branches: + - master + 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: --only-verified + + - name: Scan Results Status + if: steps.trufflehog.outcome == 'failure' + run: exit 1