From 53a99fd84fa58da71b896eade1edc247f6289554 Mon Sep 17 00:00:00 2001 From: kryota-dev <50436249+kryota-dev@users.noreply.github.com> Date: Fri, 13 Mar 2026 08:31:31 +0900 Subject: [PATCH 1/3] fix(renovate): remove extractVersionTemplate to preserve v prefix in version updates extractVersionTemplate was stripping the v prefix when Renovate wrote back updated versions (e.g. v1.22.0 -> 1.23.1 instead of v1.23.1), causing aqua to fail with 404 when trying to install packages by the tag without v prefix. Removing extractVersionTemplate allows versioningTemplate: "semver" to handle v-prefixed versions natively, preserving the v prefix on write-back. Co-Authored-By: Claude Sonnet 4.6 --- .github/renovate.json5 | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index a17c0bf..2d8fd29 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -18,8 +18,7 @@ "matchStrings": [ "# renovate: datasource=(?.*?) depName=(?.*?)\\n\\s+[A-Z_]+=\"(?[^\"]+)\"" ], - "versioningTemplate": "semver", - "extractVersionTemplate": "^v?(?.*)$" + "versioningTemplate": "semver" } ] } From 1bad682c88d7eeec318b24f7c6d3553b84bc811c Mon Sep 17 00:00:00 2001 From: kryota-dev <50436249+kryota-dev@users.noreply.github.com> Date: Fri, 13 Mar 2026 08:31:33 +0900 Subject: [PATCH 2/3] chore(serena): update project configuration Co-Authored-By: Claude Sonnet 4.6 --- .serena/project.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.serena/project.yml b/.serena/project.yml index b9d3de3..81469d5 100644 --- a/.serena/project.yml +++ b/.serena/project.yml @@ -122,3 +122,12 @@ symbol_info_budget: # Note: the backend is fixed at startup. If a project with a different backend # is activated post-init, an error will be returned. language_backend: + +# line ending convention to use when writing source files. +# Possible values: unset (use global setting), "lf", "crlf", or "native" (platform default) +# This does not affect Serena's own files (e.g. memories and configuration files), which always use native line endings. +line_ending: + +# list of regex patterns which, when matched, mark a memory entry as read‑only. +# Extends the list from the global configuration, merging the two lists. +read_only_memory_patterns: [] From 2963844ea290cca0636ba5589bbbc331f8ffcac4 Mon Sep 17 00:00:00 2001 From: kryota-dev <50436249+kryota-dev@users.noreply.github.com> Date: Fri, 13 Mar 2026 08:35:24 +0900 Subject: [PATCH 3/3] docs(agents): add language policy requiring English for all written artifacts Co-Authored-By: Claude Sonnet 4.6 --- AGENTS.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/AGENTS.md b/AGENTS.md index 14be90f..6de5872 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -6,6 +6,14 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co A repository for centrally managing and publishing reusable GitHub Actions (Reusable Workflows and Composite Actions). There is no TypeScript/JavaScript source code; GitHub Actions YAML files are the primary artifacts. +## Language policy + +All written artifacts in this repository must be in English: +- Commit messages +- Pull request titles and descriptions +- Code review comments +- Documentation and markdown files + ## Commands ```bash