From 7ee0684b810576d4f2089fa7e9a096a2bc62481a Mon Sep 17 00:00:00 2001 From: Mathias Date: Wed, 3 Jun 2026 07:42:30 +0200 Subject: [PATCH] fix(ci): quote "on" key so gitea parses workflow triggers MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bare 'on:' is a YAML boolean (Norway problem) — parsed as the key True, not the string 'on'. Gitea's workflow loader then materialised 0 jobs and every run failed instantly. Quoting "on": fixes dispatch. --- .gitea/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 074d930..bba6258 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -1,6 +1,6 @@ name: CI -on: +"on": push: branches: [main] tags: ["v*"]