From 5f706fa56201eac5d674681f2e1cdef0aa572ea4 Mon Sep 17 00:00:00 2001 From: "Roman K." Date: Wed, 19 Nov 2025 16:20:45 +0100 Subject: [PATCH] fix: typo in Actions.SkipWorkflowStrings ini tag (#10165) Fix a typo in the `ini` struct tag for `Actions.SkipWorkflowStrings` in the actions settings. Because of this, the config loader does not recognize the tag, and the `SKIP_WORKFLOW_STRINGS` option from the `[actions]` section in the config file is ignored. Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/10165 Reviewed-by: Gusted Co-authored-by: Roman K. Co-committed-by: Roman K. --- modules/setting/actions.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/setting/actions.go b/modules/setting/actions.go index 303fd6363b..5cdb2cbab4 100644 --- a/modules/setting/actions.go +++ b/modules/setting/actions.go @@ -22,7 +22,7 @@ var ( ZombieTaskTimeout time.Duration `ini:"ZOMBIE_TASK_TIMEOUT"` EndlessTaskTimeout time.Duration `ini:"ENDLESS_TASK_TIMEOUT"` AbandonedJobTimeout time.Duration `ini:"ABANDONED_JOB_TIMEOUT"` - SkipWorkflowStrings []string `ìni:"SKIP_WORKFLOW_STRINGS"` + SkipWorkflowStrings []string `ini:"SKIP_WORKFLOW_STRINGS"` LimitDispatchInputs int64 `ini:"LIMIT_DISPATCH_INPUTS"` ConcurrencyGroupQueueEnabled bool `ini:"CONCURRENCY_GROUP_QUEUE_ENABLED"` }{