fix(ci): quote "on" key so Gitea parses workflow triggers
CI / Lint / Test / Vet (push) Successful in 17s
CI / Mirror to GitHub (push) Successful in 4s

Bare on: parses as YAML boolean true (Norway problem); Gitea then ignores the triggers and silently skips jobs. Quoting forces the string key.
This commit is contained in:
2026-06-03 08:38:46 +02:00
parent 2125558196
commit 5dc247b994
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
name: cd
on:
"on":
workflow_run:
workflows: ["CI"]
types: [completed]
+1 -1
View File
@@ -1,6 +1,6 @@
name: CI
on:
"on":
push:
branches: [main]
tags: ["v*"]