mirror of
https://github.com/zed-industries/zed.git
synced 2026-06-01 03:14:56 +07:00
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:
parent
613f73b898
commit
0594076d49
1 changed files with 3 additions and 3 deletions
|
|
@ -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"),
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue