Skip to content

Commit 114b45d

Browse files
committed
Fix email configuration for GitHub Actions Bot in workflows
1 parent 590a39d commit 114b45d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/bump-gitstream-core.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
run: |
6666
echo -e "${{ inputs.description }}" > pr_description.txt
6767
git config --global user.name 'GitHub Actions Bot'
68-
git config --global user.email 'actions@github.com'
68+
git config --global user.email 'action@github.com'
6969
git add package.json package-lock.json dist/index.js
7070
git commit -m "bump `@linearb/gitstream-core` to `${{ env.VERSION }}`"
7171
git push origin HEAD:${{ env.BRANCH_NAME }}

.github/workflows/create-tag-on-merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ jobs:
9797
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
9898
run: |
9999
git config --global user.name 'GitHub Actions Bot'
100-
git config --global user.email 'actions@github.com'
100+
git config --global user.email 'action@github.com'
101101
git checkout v2-lite
102102
git checkout $NEW_TAG package.json package-lock.json dist/
103103
git add package.json package-lock.json dist/

0 commit comments

Comments
 (0)