Skip to content

Commit c21f8ac

Browse files
committed
fix: parse ORGS environment variable properly
1 parent 284088c commit c21f8ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ func Init() Config {
5151
}
5252
orgs := os.Getenv("ORGS")
5353
if orgs != "" {
54-
appConfig.SetOrganisations(strings.Split(repos, ", "))
54+
appConfig.SetOrganisations(strings.Split(orgs, ", "))
5555
}
5656
users := os.Getenv("USERS")
5757
if users != "" {

0 commit comments

Comments
 (0)