prowler-ci
Original:🇺🇸 English
Translated
Helps with Prowler repository CI and PR gates (GitHub Actions workflows). Trigger: When investigating CI checks failing on a PR, PR title validation, changelog gate/no-changelog label, conflict marker checks, secret scanning, CODEOWNERS/labeler automation, or anything under .github/workflows.
9installs
Sourceprowler-cloud/prowler
Added on
NPX Install
npx skill4agent add prowler-cloud/prowler prowler-ciTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →What this skill covers
Use this skill whenever you are:
- Reading or changing GitHub Actions workflows under
.github/workflows/ - Explaining why a PR fails checks (title, changelog, conflict markers, secret scanning)
- Figuring out which workflows run for UI/API/SDK changes and why
- Diagnosing path-filtering behavior (why a workflow did/didn't run)
Quick map (where to look)
- PR template:
.github/pull_request_template.md - PR title validation:
.github/workflows/conventional-commit.yml - Changelog gate:
.github/workflows/pr-check-changelog.yml - Conflict markers check:
.github/workflows/pr-conflict-checker.yml - Secret scanning:
.github/workflows/find-secrets.yml - Auto labels: and
.github/workflows/labeler.yml.github/labeler.yml - Review ownership:
.github/CODEOWNERS
Debug checklist (PR failing checks)
- Identify which workflow/job is failing (name + file under ).
.github/workflows/ - Check path filters: is the workflow supposed to run for your changed files?
- If it's a title check: verify PR title matches Conventional Commits.
- If it's changelog: verify the right is updated OR apply
CHANGELOG.mdlabel.no-changelog - If it's conflict checker: remove ,
<<<<<<<,=======markers.>>>>>>> - If it's secrets (TruffleHog): see section below.
TruffleHog Secret Scanning
TruffleHog scans for leaked secrets. Common false positives in test files:
Patterns that trigger TruffleHog:
- - OpenAI API keys
sk-*T3BlbkFJ* - - AWS Access Keys
AKIA[A-Z0-9]{16} - /
ghp_*- GitHub tokensgho_* - Base64-encoded strings that look like credentials
Fix for test files:
python
# BAD - looks like real OpenAI key
api_key = "sk-test1234567890T3BlbkFJtest1234567890"
# GOOD - obviously fake
api_key = "sk-fake-test-key-for-unit-testing-only"If TruffleHog flags a real secret:
- Remove the secret from the code immediately
- Rotate the credential (it's now in git history)
- Consider using for known false positives (rarely needed)
.trufflehog-ignore
Notes
- Keep focused on creating PRs and filling the template.
prowler-pr - Use for CI policies and gates that apply to PRs.
prowler-ci