From cabf453a5dab0ad8fe3c0ddfb5bec6cefce1aa93 Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Sat, 31 Jan 2026 19:55:11 +0100 Subject: [PATCH] fix: forgejo use github for actions url --- hosts/fw/modules/forgejo.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hosts/fw/modules/forgejo.nix b/hosts/fw/modules/forgejo.nix index c6fead7..d364f72 100644 --- a/hosts/fw/modules/forgejo.nix +++ b/hosts/fw/modules/forgejo.nix @@ -115,7 +115,10 @@ in SMTP_PORT = 587; USER = "gitea@cloonar.com"; }; - actions.ENABLED=true; + actions = { + ENABLED = true; + DEFAULT_ACTIONS_URL = "github"; # Pull actions from GitHub + }; attachment = { MAX_SIZE = 2048; # 2GB in MB for general attachments };