diff --git a/templates/environment.env.j2 b/templates/environment.env.j2 index 679d7ad..f2d3f73 100644 --- a/templates/environment.env.j2 +++ b/templates/environment.env.j2 @@ -296,3 +296,12 @@ GITEA__security__PASSWORD_CHECK_PWN={{ gitea_vars.security.password_check_pwn }} GITEA__security__successful_TOKENS_CACHE_SIZE={{ gitea_vars.security.successful_tokens_cache_size }} {% endif %} {% endif %} {# /security #} + +{% if 'actions' in gitea_vars %} +{% if 'enabled' in gitea_vars['actions'] %} +GITEA__actions__ENABLED={{ gitea_vars.actions.enabled }} +{% endif %} +{% if 'default_actions_url' in gitea_vars['actions'] %} +GITEA__actions__DEFAULT_ACTIONS_URL={{ gitea_vars.actions.default_actions_url }} +{% endif %} +{% endif %} {# /actions #}