diff --git a/.github/workflows/autofix.yml b/.github/workflows/autofix.yml index 42b5353..d6f1ee1 100644 --- a/.github/workflows/autofix.yml +++ b/.github/workflows/autofix.yml @@ -15,7 +15,7 @@ # ----------------------------- END WARNING ------------------------- # ------------------------------------------------------------------- -name: Autofix +name: autofix.ci env: RUSTFLAGS: -Dwarnings on: diff --git a/crates/gh-workflow-tailcall/src/workflow.rs b/crates/gh-workflow-tailcall/src/workflow.rs index 23cdedb..94bb0b4 100644 --- a/crates/gh-workflow-tailcall/src/workflow.rs +++ b/crates/gh-workflow-tailcall/src/workflow.rs @@ -54,7 +54,8 @@ impl Workflow { /// Converts the workflow into a Github workflow. fn to_autofix_workflow(&self) -> GHWorkflow { - GHWorkflow::new("Autofix") + // NOTE: The workflow name needs to by `autofix.ci` + GHWorkflow::new("autofix.ci") .add_env(self.workflow_flags()) .on(self.workflow_event()) .add_job("lint", self.lint_job(true))