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
This commit is contained in:
Marshall Bowers 2026-02-16 17:13:19 -05:00 committed by GitHub
parent 613f73b898
commit 0594076d49
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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