pub struct AdoCiTriggers {
pub branches: Vec<String>,
pub exclude_branches: Vec<String>,
pub batch: bool,
}
Expand description
Trigger ADO pipelines per PR
Fields§
§branches: Vec<String>
Run the pipeline whenever there is a PR to these specified branches (supports glob syntax)
exclude_branches: Vec<String>
Specify any branches which should be filtered out from the list of
branches
(supports glob syntax)
batch: bool
Whether to batch changes per branch.
Trait Implementations§
Source§impl Debug for AdoCiTriggers
impl Debug for AdoCiTriggers
Source§impl Default for AdoCiTriggers
impl Default for AdoCiTriggers
Source§fn default() -> AdoCiTriggers
fn default() -> AdoCiTriggers
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AdoCiTriggers
impl RefUnwindSafe for AdoCiTriggers
impl Send for AdoCiTriggers
impl Sync for AdoCiTriggers
impl Unpin for AdoCiTriggers
impl UnwindSafe for AdoCiTriggers
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