xtask: Fix naming of `WorkflowType::ExtensionCi` variant (#49302)

Marshall Bowers created

This PR fixes the naming of the `WorkflowType::ExtensionCi` variant to
match Rust naming conventions.

Release Notes:

- N/A

Change summary

tooling/xtask/src/tasks/workflows.rs | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)

Detailed changes

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"),
         }
     }