Skip to content

Commit cc0c8b2

Browse files
committed
Fix email
1 parent d9d0098 commit cc0c8b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xtask/src/metrics.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ pub fn run_metrics() -> Result<()> {
2121
let mut file = std::fs::OpenOptions::new().append(true).open("metrics.json")?;
2222
writeln!(file, "{}", metrics.json())?;
2323
run!("git add .")?;
24-
run!("git commit --author 'GitHub Action <>' --message '📈' ")?;
24+
run!("git -c user.name=Bot -c [email protected] commit --message 📈")?;
2525

2626
if let Ok(actor) = env::var("GITHUB_ACTOR") {
2727
let token = env::var("GITHUB_TOKEN").unwrap();

0 commit comments

Comments
 (0)