We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae3506d commit d9d0098Copy full SHA for d9d0098
xtask/src/metrics.rs
@@ -21,7 +21,7 @@ pub fn run_metrics() -> Result<()> {
21
let mut file = std::fs::OpenOptions::new().append(true).open("metrics.json")?;
22
writeln!(file, "{}", metrics.json())?;
23
run!("git add .")?;
24
- run!("git commit --author='GitHub Action <>' --message='📈' ")?;
+ run!("git commit --author 'GitHub Action <>' --message '📈' ")?;
25
26
if let Ok(actor) = env::var("GITHUB_ACTOR") {
27
let token = env::var("GITHUB_TOKEN").unwrap();
0 commit comments