mirror of
https://github.com/flathub/org.yuzu_emu.yuzu.git
synced 2025-03-05 12:08:04 +00:00
CI: set the committer to yuzubot
This commit is contained in:
parent
7c8ca150c2
commit
203c7786fe
7
.github/workflows/merge.js
vendored
7
.github/workflows/merge.js
vendored
@ -51,6 +51,13 @@ async function mergeChanges(branch, execa) {
|
|||||||
await p;
|
await p;
|
||||||
// bump the version number
|
// bump the version number
|
||||||
await incrementVersion();
|
await incrementVersion();
|
||||||
|
await execa("git", ["config", "--global", "user.name", "yuzubot"]);
|
||||||
|
await execa("git", [
|
||||||
|
"config",
|
||||||
|
"--global",
|
||||||
|
"user.email",
|
||||||
|
"yuzu\x40yuzu-emu\x2eorg", // prevent email harvesters from scraping the address
|
||||||
|
]);
|
||||||
await execa("git", ["add", "org.yuzu_emu.yuzu.json"]);
|
await execa("git", ["add", "org.yuzu_emu.yuzu.json"]);
|
||||||
// amend the commit to include the version change
|
// amend the commit to include the version change
|
||||||
const p1 = execa("git", ["commit", "--amend"]);
|
const p1 = execa("git", ["commit", "--amend"]);
|
||||||
|
Loading…
Reference in New Issue
Block a user