From 19116b5d249531dc3fa2793d1c0b7544caf81b40 Mon Sep 17 00:00:00 2001 From: Michael Otto Date: Wed, 18 Mar 2026 14:10:08 +0100 Subject: [PATCH] gitea actions ng50 --- .gitea/workflows/release.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/release.yaml b/.gitea/workflows/release.yaml index a1a8693..5a14f39 100644 --- a/.gitea/workflows/release.yaml +++ b/.gitea/workflows/release.yaml @@ -364,14 +364,14 @@ jobs: run: | cd repo - git config user.name "Release Bot" - git config user.email "release-bot@noreply.localhost" + git config user.name "release-bot" + git config user.email "ci@example.local" git add . # Commit nur, wenn Änderungen vorhanden sind if ! git diff --cached --quiet; then - git commit -m "${{ inputs.name }} → ${{ steps.payload.outputs.version }}" + git commit -m "${{ inputs.name }} ${{ steps.metadata.outputs.version }}" else echo "Keine Änderungen – kein Commit notwendig." exit 0