From 482a2f008d29e891a74530df97257e72b0ac44cf Mon Sep 17 00:00:00 2001 From: Tushar Mathur Date: Wed, 11 Dec 2024 14:21:49 -0800 Subject: [PATCH] chore: update workflow name --- .github/workflows/autofix.yml | 2 +- crates/gh-workflow-tailcall/src/workflow.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/autofix.yml b/.github/workflows/autofix.yml index 45f1a8d..6141f9b 100644 --- a/.github/workflows/autofix.yml +++ b/.github/workflows/autofix.yml @@ -15,7 +15,7 @@ # ----------------------------- END WARNING ------------------------- # ------------------------------------------------------------------- -name: autofix.ci +name: Autofix env: RUSTFLAGS: -Dwarnings on: diff --git a/crates/gh-workflow-tailcall/src/workflow.rs b/crates/gh-workflow-tailcall/src/workflow.rs index 2cdd3c5..555c480 100644 --- a/crates/gh-workflow-tailcall/src/workflow.rs +++ b/crates/gh-workflow-tailcall/src/workflow.rs @@ -54,7 +54,7 @@ impl Workflow { /// Converts the workflow into a Github workflow. fn to_autofix_workflow(&self) -> GHWorkflow { - GHWorkflow::new("autofix.ci") + GHWorkflow::new("Autofix") .add_env(self.workflow_flags()) .on(self.workflow_event()) .add_job("lint", self.lint_job(true))