forgejo: Explicitly enable cron, set actions runner log level
This commit is contained in:
parent
24c40e685e
commit
6a5938be3f
2 changed files with 8 additions and 1 deletions
|
@ -12,6 +12,9 @@
|
|||
"nix:docker://ghcr.io/eboskma/forgejo-nix-runner:latest"
|
||||
];
|
||||
settings = {
|
||||
log = {
|
||||
level = "info";
|
||||
};
|
||||
runner = {
|
||||
capacity = 1;
|
||||
};
|
||||
|
|
|
@ -74,7 +74,11 @@ in
|
|||
ALLOWED_HOST_LIST = "external,10.0.0.202/32,ci.datarift.nl,10.0.0.210/32";
|
||||
};
|
||||
|
||||
# Experimental Actions
|
||||
cron = {
|
||||
ENABLED = true;
|
||||
RUN_AT_START = true;
|
||||
};
|
||||
|
||||
actions = {
|
||||
ENABLED = true;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue