Skip to content

Commit 89ea38b

Browse files
authored
ci: Fix to commit (#33)
1 parent 4233e68 commit 89ea38b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/prepare-release-pr.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,14 @@ jobs:
6060
- name: Create release branch and commit
6161
id: create_release_branch
6262
run: |
63-
git config user.name "github-actions[bot]"
64-
git config user.email "2563045+github-actions[bot]@users.noreply.github.com"
6563
BRANCH_NAME="release/v${{ steps.version.outputs.version }}"
64+
git config user.name "github-actions[bot]"
65+
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
6666
git checkout -b "$BRANCH_NAME"
67-
echo "branch=$BRANCH_NAME" >> $GITHUB_OUTPUT
6867
git add package.json
6968
git commit -m "chore(release): v${{ steps.version.outputs.version }}"
7069
git push --set-upstream origin "$BRANCH_NAME"
70+
echo "branch=$BRANCH_NAME" >> $GITHUB_OUTPUT
7171
7272
- name: Create Pull Request
7373
env:

0 commit comments

Comments
 (0)