pub struct GitWorkflowConfig {
pub branch_prefix: String,
pub auto_merge: bool,
pub merge_method: String,
pub min_confidence: f64,
pub webhook: WebhookConfig,
}Expand description
Git workflow pipeline configuration.
Fields§
§branch_prefix: StringBranch prefix for autonomous fix branches.
auto_merge: boolWhether to auto-merge PRs when policy allows.
merge_method: StringDefault merge method.
min_confidence: f64Minimum investigation confidence to proceed with fix.
webhook: WebhookConfigWebhook server configuration.
Trait Implementations§
Source§impl Clone for GitWorkflowConfig
impl Clone for GitWorkflowConfig
Source§fn clone(&self) -> GitWorkflowConfig
fn clone(&self) -> GitWorkflowConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GitWorkflowConfig
impl Debug for GitWorkflowConfig
Source§impl Default for GitWorkflowConfig
impl Default for GitWorkflowConfig
Source§impl<'de> Deserialize<'de> for GitWorkflowConfig
impl<'de> Deserialize<'de> for GitWorkflowConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for GitWorkflowConfig
impl RefUnwindSafe for GitWorkflowConfig
impl Send for GitWorkflowConfig
impl Sync for GitWorkflowConfig
impl Unpin for GitWorkflowConfig
impl UnsafeUnpin for GitWorkflowConfig
impl UnwindSafe for GitWorkflowConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more