Configure Git user in release workflow

Added steps to set the Git user name and email in the release workflow. This ensures that commits made by the workflow are correctly attributed to GitHub Actions, preventing potential issues with commit authorship.
This commit is contained in:
2024-08-14 21:48:13 +02:00
parent 27ed151589
commit 8937d5f307

View File

@@ -72,6 +72,12 @@ jobs:
echo "$notes" >> release_notes.md
shell: bash
- name: Set Git user
run: |
git config --local user.name "GitHub Actions"
git config --local user.email "actions@github.com"
shell: bash
- name: Create temporary branch
id: create_temp_branch
run: |