Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

enhancement: Gitleaks schema improvements #3675

Merged
merged 6 commits into from
Jun 22, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ Note: Can be used with `oxsecurity/megalinter@beta` in your GitHub Action mega-l
- [Powershell](https://github.com/PowerShell/PSScriptAnalyzer#readme) Error table truncation improvements
- [yamllint](https://github.com/adrienverge/yamllint) fix error/warning count to work with different log output formats
- Improve support for single argument in `get_list_args` function
- [GitLeaks](https://github.com/gitleaks/gitleaks) add missing schema properties

- Doc

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15712,6 +15712,22 @@
"title": "REPOSITORY_GITLEAKS: Define or override a list of bash commands to run after the linter",
"type": "array"
},
"REPOSITORY_GITLEAKS_PR_COMMITS_SCAN": {
"$id": "#/properties/REPOSITORY_GITLEAKS_PR_COMMITS_SCAN",
"default": false,
"title": "REPOSITORY_GITLEAKS: Scan only commits in the current Pull Request/Merge Request",
"type": "boolean"
},
"REPOSITORY_GITLEAKS_PR_SOURCE_SHA":{
"$id": "#/properties/REPOSITORY_GITLEAKS_PR_SOURCE_SHA",
"title": "REPOSITORY_GITLEAKS: Source SHA of the Pull Request/Merge Request",
"type": "string"
},
"REPOSITORY_GITLEAKS_PR_TARGET_SHA":{
"$id": "#/properties/REPOSITORY_GITLEAKS_PR_TARGET_SHA",
"title": "REPOSITORY_GITLEAKS: Target SHA of the Pull Request/Merge Request",
"type": "string"
},
"REPOSITORY_GITLEAKS_PRE_COMMANDS": {
"$id": "#/properties/REPOSITORY_GITLEAKS_PRE_COMMANDS",
"examples": [
Expand Down
Loading