Ignore known common prefix matches for Github V1 detector #8930
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Smoke | |
on: | |
pull_request: | |
jobs: | |
smoke: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "1.24" | |
- name: Smoke | |
run: | | |
set -e | |
go run . git https://github.com/dustin-decker/secretsandstuff.git > /dev/null | |
go run . github --repo https://github.com/dustin-decker/secretsandstuff.git > /dev/null | |
zombies: | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "1.24" | |
- name: Run trufflehog | |
run: | | |
set -e | |
go run . git --no-verification file://. > /dev/null | |
# This case previously had a deadlock issue and left zombies after trufflehog exited #3379 | |
go run . git --no-verification https://github.com/git-test-fixtures/binary.git > /dev/null | |
- name: Check for running git processes and zombies | |
run: | | |
if pgrep -x "git" > /dev/null | |
then | |
echo "Git processes are still running" | |
exit 1 | |
else | |
echo "No git processes found" | |
fi | |
if ps -A -ostat,ppid | grep -e '[zZ]' > /dev/null | |
then | |
echo "Zombie processes found" | |
exit 1 | |
else | |
echo "No zombie processes found" | |
fi |