From 0594076d49dc53bb5fa5ab3be28b92ac881f2b2a Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Mon, 16 Feb 2026 17:13:19 -0500 Subject: [PATCH] xtask: Fix naming of `WorkflowType::ExtensionCi` variant (#49302) This PR fixes the naming of the `WorkflowType::ExtensionCi` variant to match Rust naming conventions. Release Notes: - N/A --- tooling/xtask/src/tasks/workflows.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tooling/xtask/src/tasks/workflows.rs b/tooling/xtask/src/tasks/workflows.rs index ea2833493899cfc029dd94e2db76d0b9334f0f56..077282760a4cc141cd1210c58f38cdf0669a551b 100644 --- a/tooling/xtask/src/tasks/workflows.rs +++ b/tooling/xtask/src/tasks/workflows.rs @@ -45,7 +45,7 @@ impl WorkflowFile { fn extension(f: fn() -> Workflow) -> WorkflowFile { WorkflowFile { source: f, - r#type: WorkflowType::ExtensionCI, + r#type: WorkflowType::ExtensionCi, } } @@ -92,7 +92,7 @@ enum WorkflowType { Zed, /// Workflows living in the `zed-extensions/workflows` repository that are /// required workflows for PRs to the extension organization - ExtensionCI, + ExtensionCi, /// Workflows living in each of the extensions to perform checks and version /// bumps until a better, more centralized system for that is in place. ExtensionsShared, @@ -115,7 +115,7 @@ impl WorkflowType { fn folder_path(&self) -> PathBuf { match self { WorkflowType::Zed => PathBuf::from(".github/workflows"), - WorkflowType::ExtensionCI => PathBuf::from("extensions/workflows"), + WorkflowType::ExtensionCi => PathBuf::from("extensions/workflows"), WorkflowType::ExtensionsShared => PathBuf::from("extensions/workflows/shared"), } }