-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
improved test to include check of config profile with repo
- Loading branch information
1 parent
50463d5
commit 86b7d03
Showing
3 changed files
with
80 additions
and
16 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
{ | ||
"profile_name": "default-profile-with-repo", | ||
"repository": { | ||
"id": "my-repo-id-123", | ||
"name": "my-repo", | ||
"url": "https://github.com/myUser/my-repo.git", | ||
"provider": "github" | ||
}, | ||
"frogbot_config": { | ||
"email_author": "[email protected]", | ||
"aggregate_fixes": true, | ||
"avoid_previous_pr_comments_deletion": true, | ||
"branch_name_template": "frogbot-${IMPACTED_PACKAGE}-${BRANCH_NAME_HASH}", | ||
"pr_title_template": "[🐸 Frogbot] Upgrade {IMPACTED_PACKAGE} to {FIX_VERSION}", | ||
"pr_comment_title": "Frogbot notes:", | ||
"commit_message_template": "Upgrade {IMPACTED_PACKAGE} to {FIX_VERSION}", | ||
"show_secrets_as_pr_comment": false | ||
}, | ||
"modules": [ | ||
{ | ||
"module_name": "default-module", | ||
"path_from_root": ".", | ||
"releases_repo": "nuget-remote", | ||
"analyzer_manager_version": "1.8.1", | ||
"additional_paths_for_module": ["lib1", "utils/lib2"], | ||
"exclude_paths": ["**/.git/**", "**/*test*/**", "**/*venv*/**", "**/*node_modules*/**", "**/target/**"], | ||
"scan_config": { | ||
"scan_timeout": 600, | ||
"exclude_pattern": "*.md", | ||
"enable_sca_scan": true, | ||
"enable_contextual_analysis_scan": true, | ||
"sast_scanner_config": { | ||
"enable_sast_scan": true | ||
}, | ||
"secrets_scanner_config": { | ||
"enable_secrets_scan": true | ||
}, | ||
"iac_scanner_config": { | ||
"enable_iac_scan": true | ||
}, | ||
"applications_scanner_config": { | ||
"enable_applications_scan": true | ||
}, | ||
"services_scanner_config": { | ||
"enable_services_scan": true | ||
} | ||
}, | ||
"protected_branches": ["main", "master"], | ||
"include_exclude_mode": 0, | ||
"include_exclude_pattern": "*test*", | ||
"report_analytics": true | ||
} | ||
], | ||
"is_default": true | ||
} |
This file contains 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
This file contains 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