Skip to content

Commit 0e7d902

Browse files
committed
fix: disable actions by default
1 parent 25d4f95 commit 0e7d902

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/setting/repository.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ func loadRepositoryFrom(rootCfg ConfigProvider) {
310310
Repository.DisabledRepoUnits = append(Repository.DisabledRepoUnits, "repo.packages")
311311
}
312312

313-
if !rootCfg.Section("actions").Key("ENABLED").MustBool(true) {
313+
if !rootCfg.Section("actions").Key("ENABLED").MustBool(false) {
314314
Repository.DisabledRepoUnits = append(Repository.DisabledRepoUnits, "repo.actions")
315315
}
316316

0 commit comments

Comments
 (0)