Skip to content

Commit

Permalink
chore: update workflow name
Browse files Browse the repository at this point in the history
  • Loading branch information
tusharmath committed Dec 11, 2024
1 parent 6bde30f commit 4170617
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/autofix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# ----------------------------- END WARNING -------------------------
# -------------------------------------------------------------------

name: Autofix
name: autofix.ci
env:
RUSTFLAGS: -Dwarnings
on:
Expand Down
3 changes: 2 additions & 1 deletion crates/gh-workflow-tailcall/src/workflow.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit 4170617

Please sign in to comment.