Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
555d703
Remove frogbot-config.yml functionality - use only environment variables
eyalk007 Nov 3, 2025
8ef541e
Remove all config yml file support and references
eyalk007 Nov 20, 2025
59e943f
Merge remote-tracking branch 'upstream/v3_er' into remove-config-yaml
eyalk007 Nov 25, 2025
5fd7179
Remove deprecated schema and jfrog-pipelines templates
eyalk007 Nov 25, 2025
dc45007
Remove redundant config YAML tests
eyalk007 Nov 26, 2025
d9605e1
Fix scanpullrequest test: add missing RepoName field
eyalk007 Nov 26, 2025
d6c1262
Fix failing multi-dir and no-fail tests by setting env vars
eyalk007 Nov 26, 2025
6f082f6
Cr fixes
eyalk007 Nov 30, 2025
93f5d9a
Fix aggregate-multi-project test expectations
eyalk007 Dec 1, 2025
61fc295
Fix aggregate-multi-project test branch name
eyalk007 Dec 1, 2025
29999e3
Fix scanpullrequest field access patterns to use nested Params structure
eyalk007 Dec 1, 2025
e487989
Complete field access pattern fixes for scanrepository.go
eyalk007 Dec 1, 2025
da2f644
Update expected test response for new vulnerability ordering
eyalk007 Dec 1, 2025
4f12d6f
Remove obsolete aggregate-multi-project test and fix partial-results-…
eyalk007 Dec 1, 2025
3e5dce7
Fix critical test isolation issues in TestScanRepositoryCmd_Run
eyalk007 Dec 2, 2025
d5bc03a
Fix test isolation by adding environment variable cleanup
eyalk007 Dec 2, 2025
4466664
Merge branch 'v3_er' into remove-config-yaml
eyalk007 Dec 3, 2025
638e6eb
fixed the go mod
eyalk007 Dec 3, 2025
7f47d5d
fixed the linter
eyalk007 Dec 3, 2025
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
11 changes: 0 additions & 11 deletions .frogbot/frogbot-config.yml

This file was deleted.

6 changes: 3 additions & 3 deletions commands.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (

type FrogbotCommand interface {
// Run the command
Run(config utils.RepoAggregator, client vcsclient.VcsClient, frogbotRepoConnection *utils.UrlAccessChecker) error
Run(config utils.Repository, client vcsclient.VcsClient, frogbotRepoConnection *utils.UrlAccessChecker) error
}

func GetCommands() []*clitool.Command {
Expand Down Expand Up @@ -78,10 +78,10 @@ func Exec(command FrogbotCommand, commandName string) (err error) {

// Invoke the command interface
log.Info(fmt.Sprintf("Running Frogbot %q command", commandName))
err = command.Run(frogbotDetails.Repositories, frogbotDetails.GitClient, frogbotRepoConnection)
err = command.Run(frogbotDetails.Repository, frogbotDetails.GitClient, frogbotRepoConnection)

if err != nil {
if reportError := xsc.ReportError(frogbotDetails.XrayVersion, frogbotDetails.XscVersion, frogbotDetails.ServerDetails, err, "frogbot", frogbotDetails.Repositories[0].JFrogProjectKey); reportError != nil {
if reportError := xsc.ReportError(frogbotDetails.XrayVersion, frogbotDetails.XscVersion, frogbotDetails.ServerDetails, err, "frogbot", frogbotDetails.Repository.JFrogProjectKey); reportError != nil {
log.Debug(reportError)
}
} else {
Expand Down
207 changes: 0 additions & 207 deletions docs/templates/jfrog-pipelines/pipelines-dotnet.yml

This file was deleted.

Loading
Loading