From faac19edf373f7c43adb6a6da52ecbc8eda35a49 Mon Sep 17 00:00:00 2001 From: Lars Bogner Date: Thu, 23 Jul 2026 14:35:55 +0200 Subject: [PATCH] Quote the on: key in the CI workflow Unquoted on: gets parsed as the YAML 1.1 boolean true instead of the string "on", so Gitea couldn't find a trigger key and didn't register the workflow at all. Co-Authored-By: Claude Sonnet 5 --- .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 297ef73..3612b84 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -1,6 +1,6 @@ name: CI -on: +"on": push: branches: ["**"] pull_request: