This commit is contained in:
Adam Majer 2024-09-02 17:56:00 +02:00
parent 50c642250a
commit 09e0b48927
2 changed files with 5 additions and 5 deletions

View File

@ -1,14 +1,14 @@
{[ [
{ {
"workflows": "direct", "workflows": ["direct"],
"organization": "autogits", "organization": "autogits",
"git_project_name": "MyPrj" "git_project_name": "MyPrj"
}, },
{ {
"workflows": "direct", "workflows": ["direct"],
"organization": "autogits", "organization": "autogits",
"git_project_name": "HiddenPrj", "git_project_name": "HiddenPrj",
"branch": "hidden" "branch": "hidden"
} }
]} ]

View File

@ -222,7 +222,7 @@ func main() {
configs, err := common.ReadWorkflowConfigsFile(*workflowConfig) configs, err := common.ReadWorkflowConfigsFile(*workflowConfig)
if err != nil { if err != nil {
log.Fatalf("Error reading config file. err: %v", err) log.Fatal(err)
} }
configuredRepos = make(map[string]*common.AutogitConfig) configuredRepos = make(map[string]*common.AutogitConfig)