add git_merge_commit_email into GitConfig
Signed-off-by: onur-ozkan <work@onurozkan.dev>
This commit is contained in:
parent
38e3a5771c
commit
05043a370a
2 changed files with 2 additions and 0 deletions
|
|
@ -2509,6 +2509,7 @@ impl Config {
|
|||
GitConfig {
|
||||
git_repository: &self.stage0_metadata.config.git_repository,
|
||||
nightly_branch: &self.stage0_metadata.config.nightly_branch,
|
||||
git_merge_commit_email: &self.stage0_metadata.config.git_merge_commit_email,
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -4,6 +4,7 @@ use std::process::{Command, Stdio};
|
|||
pub struct GitConfig<'a> {
|
||||
pub git_repository: &'a str,
|
||||
pub nightly_branch: &'a str,
|
||||
pub git_merge_commit_email: &'a str,
|
||||
}
|
||||
|
||||
/// Runs a command and returns the output
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue