Skip to content

Commit bfb9fd1

Browse files
authored
fix: Configure the git identity in the new tag workflow (#533)
1 parent 6b3a3c3 commit bfb9fd1

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/tag.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,5 +72,7 @@ jobs:
7272
TAG="v$NEW_VERSION"
7373
echo "Creating tag: $TAG (from base tag $LATEST_TAG + $PATCH commits)"
7474
75+
git config user.email "github-actions[bot]@users.noreply.github.com"
76+
git config user.name "github-actions[bot]"
7577
git tag -a "$TAG" -m "Release $TAG"
7678
git push "https://x-access-token:${GH_TOKEN}@github.com/$REPOSITORY" "$TAG"

0 commit comments

Comments
 (0)