This is an automated email from the ASF dual-hosted git repository.

lewismc pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tika-helm.git


The following commit(s) were added to refs/heads/main by this push:
     new 67763cd  Configuring Git user identity before creating the annotated 
tag
67763cd is described below

commit 67763cd555f9377c8a0a4e94bbe9472ee3384b46
Author: Lewis John McGibbney <[email protected]>
AuthorDate: Fri Apr 3 18:13:19 2026 -0700

    Configuring Git user identity before creating the annotated tag
---
 .github/workflows/tag-release.yaml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/.github/workflows/tag-release.yaml 
b/.github/workflows/tag-release.yaml
index cca23ca..09a00a6 100644
--- a/.github/workflows/tag-release.yaml
+++ b/.github/workflows/tag-release.yaml
@@ -57,6 +57,8 @@ jobs:
       - name: Create and push tag
         if: steps.check-tag.outputs.exists == 'false'
         run: |
+          git config user.name "github-actions[bot]"
+          git config user.email 
"41898282+github-actions[bot]@users.noreply.github.com"
           TAG="v${{ steps.chart-version.outputs.version }}"
           git tag -a "$TAG" -m "Release tika-helm $TAG"
           git push origin "$TAG"

Reply via email to