Infini-DL360/forgejo: setup unpriviledged local runner

This commit is contained in:
Infinidoge 2024-07-14 01:34:17 -04:00
parent 96832c8a5b
commit d0aebb0568
Signed by: Infinidoge
SSH key fingerprint: SHA256:EMoPe5e2dO0gEvtBb2xkZTz5dkyL0rBmuiGTKG5s96E

View file

@ -80,9 +80,16 @@ in
]; ];
}; };
local = { local = {
enable = false; enable = true;
name = "Local";
url = "https://${domain}";
token = common.forgejo.actions.global_token; token = common.forgejo.actions.global_token;
labels = [ ]; labels = [
"docker:docker://gitea/runner-images:ubuntu-latest"
"ubuntu-latest:docker://gitea/runner-images:ubuntu-latest"
"ubuntu-22.04:docker://gitea/runner-images:ubuntu-22.04"
"ubuntu-20.04:docker://gitea/runner-images:ubuntu-20.04"
];
}; };
}; };