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 de71464 commit 80d6bdbCopy full SHA for 80d6bdb
.github/workflows/metrics.yaml
@@ -1,4 +1,4 @@
1
-name: rustdoc
+name: metrics
2
on:
3
push:
4
branches:
xtask/src/metrics.rs
@@ -20,7 +20,7 @@ pub fn run_metrics() -> Result<()> {
20
let _d = pushd("target/metrics");
21
let mut file = std::fs::OpenOptions::new().append(true).open("metrics.json")?;
22
writeln!(file, "{}", metrics.json())?;
23
- run!("git commit -am'📈'")?;
+ run!("git commit --author='GitHub Action <>' -am'📈' ")?;
24
25
if let Ok(actor) = env::var("GITHUB_ACTOR") {
26
let token = env::var("GITHUB_TOKEN").unwrap();
0 commit comments