From fffe0b17e635ccb3ff6d2eb1ba0d7c62d74afe61 Mon Sep 17 00:00:00 2001 From: John O'Keefe Date: Thu, 30 Jul 2026 15:50:02 -0400 Subject: [PATCH] ci(release): name Actions runs 'Release ' instead of the commit message Add a top-level run-name so the Gitea Actions runs list shows 'Release v0.3.0' rather than the tagged commit's subject. Uses the same expression (inputs.tag || ref_name) as the TAG env, so it resolves for both tag pushes and manual workflow_dispatch. --- .gitea/workflows/release.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index 46f7699..c11c520 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -1,5 +1,9 @@ name: Release +# Overrides the default run name (the tagged commit's message) so the Actions +# runs list shows "Release v0.3.0" instead. +run-name: "Release ${{ gitea.event.inputs.tag || gitea.ref_name }}" + # Publishes the Bookhoard container image to the Gitea container registry AND # creates a Gitea Release whose body is the annotated tag's message (generated # locally by `make release VERSION=...` via git-cliff). Triggered by a version