From 869cd78d0bcac9a16712da116f38503ef35fd7a3 Mon Sep 17 00:00:00 2001 From: josh Date: Sat, 18 Apr 2026 02:34:35 -0400 Subject: [PATCH] ci: quote e2e.yml input description so Gitea's YAML parser accepts it Unquoted `(default: main)` trips Gitea Actions' strict YAML parser with "mapping values are not allowed in this context" because the inline colon reads as a nested mapping. GitHub Actions' parser was lenient about this; Gitea's isn't. Co-Authored-By: Claude Opus 4.7 --- .gitea/workflows/e2e.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/e2e.yml b/.gitea/workflows/e2e.yml index f479304..f084059 100644 --- a/.gitea/workflows/e2e.yml +++ b/.gitea/workflows/e2e.yml @@ -10,7 +10,7 @@ on: workflow_dispatch: inputs: ref: - description: Git ref to test (default: main) + description: "Git ref to test (default: main)" required: false default: main