Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/fluffy-clocks-knock.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@changesets/action": patch
---

Use full git email (`41898282+github-actions[bot]@users.noreply.github.com`) for github-actions bot when making commits
2 changes: 1 addition & 1 deletion src/gitUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const setupUser = async () => {
await exec("git", [
"config",
"user.email",
`"github-actions[bot]@users.noreply.github.com"`,
`"41898282+github-actions[bot]@users.noreply.github.com"`,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is this number stable? 🤔

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I guess it's its ID... so it should be stable 🤷‍♂️

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah I think it should. The earliest mention I found was from 2020, and the checkout action also mentions it. So likely safe enough.

]);
};

Expand Down