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