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",
"git_project_name": "MyPrj"
},
{
"workflows": "direct",
"workflows": ["direct"],
"organization": "autogits",
"git_project_name": "HiddenPrj",
"branch": "hidden"
}
]}
]

View File

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