Skip to content

Commit 06e0db3

Browse files
committed
Fix workflow run
1 parent 4f7a258 commit 06e0db3

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/add-changeset-on-label.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ jobs:
1818
- name: Checkout PR branch
1919
uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4
2020
with:
21-
repository: ${{ github.event.pull_request.head.repo.full_name }}
2221
ref: ${{ github.event.pull_request.head.ref }}
2322
fetch-depth: 0
23+
token: ${{ secrets.CHANGESETS_TOKEN }}
2424

2525
- name: Install pnpm
2626
uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6
@@ -46,8 +46,8 @@ jobs:
4646

4747
- name: Commit changeset
4848
run: |
49-
git config user.name "github-actions[bot]"
50-
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
49+
git config user.name "danez[bot]"
50+
git config user.email "120286224+danez-bot@users.noreply.github.com"
5151
git add .changeset
5252
if git diff --cached --quiet; then
5353
echo "No changeset changes to commit."

0 commit comments

Comments
 (0)