From 5dc247b994d3bbb1d9d3ea4a28f37e67a1445c24 Mon Sep 17 00:00:00 2001 From: Mathias Date: Wed, 3 Jun 2026 08:38:46 +0200 Subject: [PATCH] fix(ci): quote "on" key so Gitea parses workflow triggers Bare on: parses as YAML boolean true (Norway problem); Gitea then ignores the triggers and silently skips jobs. Quoting forces the string key. --- .gitea/workflows/cd.yml | 2 +- .gitea/workflows/ci.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/cd.yml b/.gitea/workflows/cd.yml index c0f283c..c48ff30 100644 --- a/.gitea/workflows/cd.yml +++ b/.gitea/workflows/cd.yml @@ -1,6 +1,6 @@ name: cd -on: +"on": workflow_run: workflows: ["CI"] types: [completed] diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index d515c70..4011a8d 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -1,6 +1,6 @@ name: CI -on: +"on": push: branches: [main] tags: ["v*"]