Skip to content

Commit d3a823a

Browse files
authored
fix: add git identity configuration to semantic-release workflow (#97)
- Configure git user.name and user.email for github-actions[bot] - Matches configuration used in release-management workflow - Should resolve potential git identity issues during release process
1 parent c61c6f8 commit d3a823a

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

.github/workflows/semantic-release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,10 @@ jobs:
6868
run: |
6969
source .venv/bin/activate
7070
71+
# Configure git identity for semantic-release
72+
git config --global user.name "github-actions[bot]"
73+
git config --global user.email "github-actions[bot]@users.noreply.github.com"
74+
7175
if [ "${{ inputs.mode }}" = "historical" ]; then
7276
if [ -z "${{ inputs.commit }}" ] || [ -z "${{ inputs.version }}" ]; then
7377
echo "ERROR: Historical releases require both commit and version"

0 commit comments

Comments
 (0)