feat(init): Add the new/init subcommands (#85)

This commit is contained in:
Gerald Pinder 2024-11-14 20:15:12 -05:00 committed by GitHub
parent e3b246ef91
commit 918da22952
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
19 changed files with 765 additions and 152 deletions

View file

@ -1,3 +1,5 @@
use std::path::PathBuf;
use blue_build_utils::{
constants::{
CI_COMMIT_REF_NAME, CI_COMMIT_SHORT_SHA, CI_DEFAULT_BRANCH, CI_MERGE_REQUEST_IID,
@ -140,6 +142,10 @@ impl CiDriver for GitlabDriver {
)
.to_lowercase())
}
fn default_ci_file_path() -> PathBuf {
PathBuf::from(".gitlab-ci.yml")
}
}
#[cfg(test)]