Implement Gitea Actions runner substrate
Some checks failed
Forge Runner Smoke / compatibility-smoke (push) Has been cancelled

This commit is contained in:
2026-06-08 00:31:06 +02:00
parent 3fb63c9a03
commit 19ee47fe82
15 changed files with 1032 additions and 3 deletions

View File

@@ -0,0 +1,17 @@
#!/sbin/openrc-run
name="Railiance Gitea Actions runner"
description="Forge-owned Gitea act_runner service"
command="/usr/local/bin/act_runner"
command_args="daemon --config /etc/act_runner/config.yaml"
command_user="act_runner:act_runner"
directory="/var/lib/act_runner"
pidfile="/run/act_runner.pid"
command_background="yes"
output_log="/var/log/act_runner.log"
error_log="/var/log/act_runner.err"
depend() {
need net
after firewall
}