Skip to content

Commit 2f3f195

Browse files
committed
chore: try to only run workflows once per run release run
1 parent 5bdc615 commit 2f3f195

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/release-please.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ jobs:
1818
id: release
1919
with:
2020
command: manifest
21-
token: ${{ secrets.RELEASE_PLEASE_TOKEN }}
2221

2322
update-lock:
2423
runs-on: ubuntu-latest
@@ -43,8 +42,8 @@ jobs:
4342

4443
- name: Committing and push changes
4544
run: |
46-
git config user.name "$(git log -n 1 --pretty=format:%an)"
47-
git config user.email "$(git log -n 1 --pretty=format:%ae)"
45+
git config user.name "${GITHUB_ACTOR}"
46+
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
4847
git add yarn.lock
4948
git commit --amend --no-edit
5049
git push --force

0 commit comments

Comments
 (0)