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::{
GITHUB_EVENT_NAME, GITHUB_EVENT_PATH, GITHUB_REF_NAME, GITHUB_SHA, GITHUB_TOKEN_ISSUER_URL,
@ -130,6 +132,10 @@ impl CiDriver for GithubDriver {
.trim()
.to_lowercase())
}
fn default_ci_file_path() -> PathBuf {
PathBuf::from(".github/workflows/build.yml")
}
}
#[cfg(test)]