From 1fd32f0ff64b3a77f2c87b320e814954151ca9bf Mon Sep 17 00:00:00 2001 From: Felix Faerber Date: Sat, 4 Jul 2026 12:33:27 +0300 Subject: [PATCH] fix: quote run-name so the issue number is not eaten as a YAML comment MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bare '#' starts a YAML comment, so run-name resolved to 'ai-agent ·' with the number dropped. Quote the value. Co-Authored-By: Claude Opus 4.8 (1M context) --- .gitea/workflows/ai-agent.yml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ai-agent.yml b/.gitea/workflows/ai-agent.yml index dfa5be4..cb40ba4 100644 --- a/.gitea/workflows/ai-agent.yml +++ b/.gitea/workflows/ai-agent.yml @@ -1,5 +1,5 @@ name: ai-agent -run-name: ai-agent · #${{ github.event.issue.number }} +run-name: "ai-agent · #${{ github.event.issue.number }}" # quotes required: bare # starts a YAML comment # Standard caller for the shared AI-agent workflow (ffaerber/agents). Copy this file VERBATIM into # any repo that should get the agents — it is identical in every repo. All logic + scripts live in # agents/.gitea/workflows/; scripts are fetched from @main at run time. The `jobs.agent` wrapper is diff --git a/README.md b/README.md index a3869d5..ff1ed4e 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ it is the source of truth, and `agents` itself uses the same file: ```yaml name: ai-agent -run-name: ai-agent · #${{ github.event.issue.number }} +run-name: "ai-agent · #${{ github.event.issue.number }}" # quotes required: bare # starts a YAML comment # Standard caller for the shared AI-agent workflow (ffaerber/agents). Copy this file VERBATIM into # any repo that should get the agents — it is identical in every repo. All logic + scripts live in # agents/.gitea/workflows/; scripts are fetched from @main at run time. The `jobs.agent` wrapper is -- 2.54.0