Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
6 changes: 4 additions & 2 deletions cmd/args.go
Original file line number Diff line number Diff line change
Expand Up @@ -319,8 +319,10 @@ var rootCmd = &cobra.Command{
return err
}

settings, _ := ValidateAndConfigureRun(args, cmd, repoSettings)
// TODO Validate that you can find all the files
settings, err := ValidateAndConfigureRun(args, cmd, repoSettings)
if err != nil {
return err
}

// Check all labels exist
if settings.PrSettings != nil && len(settings.PrSettings.Labels) > 0 {
Expand Down
2 changes: 1 addition & 1 deletion cmd/execute.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
)

// VERSION number: changed in CI
const VERSION = "v0.1.2"
const VERSION = "v0.1.3"

var rootPath string
var repo repository.Repository
Expand Down