-
Notifications
You must be signed in to change notification settings - Fork 0
Checks
This checks that a LICENSE.* file exists in the repository root or in a directory called LICENSE*. Names are not case-sensitive.
✅ : LICENSE file exists and is not empty in either the repository root or in a directory called LICENSE.
⚠ : Multiple LICENSE files found.
❌ : LICENSE file not found or it's empty.
Checks repository for any secrets using Trufflehog.
The command run is trufflehog git {directory} --json --results=verified,unknown --fail.
Lists all files containing secrets with any found description of the secret.
✅ : No secrets was found.
⚠ : Secrets was found but is covered by .gitignore.
❌ : Secrets was found.
Checks that a .gitignore file exists in the repository root.
✅ : .gitignore file exists in the repository root.
⚠ : .gitignore is empty.
❌ : .gitignore file doesn't exist.
Checks that a README file exists in the repository root.
✅ : README.* file exists in the repository root.
⚠ : README.* is empty.
❌ : README.* file doesn't exist.
Checks that the .github/workflows directory exists and it's not empty.
✅ : .github/workflows directory exists
⚠ : .github/workflows directory exists but is empty.
❌ : .github/workflows directory exists doesn't exist.
Checks if any path in repository contains the string test.
Lists all paths containing test.
✅ : Test string exists in a path
❌ : Test string does not exist in a path
Checks if any file in repository contains the string test.
Lists all files containing "test"
✅ : Test string exists in a file
❌ : Test string does not exist in a file