pub struct ActionsOperations;Expand description
GitHub Actions Operations manager
Implementations§
Source§impl ActionsOperations
impl ActionsOperations
Sourcepub async fn fix_and_retry(
run_id: u64,
fixes: Vec<String>,
) -> Result<WorkflowIterationResult>
pub async fn fix_and_retry( run_id: u64, fixes: Vec<String>, ) -> Result<WorkflowIterationResult>
Sourcepub async fn summarize_in_pr_comment(
pr_number: u32,
summary: CiResultSummary,
) -> Result<CiResultComment>
pub async fn summarize_in_pr_comment( pr_number: u32, summary: CiResultSummary, ) -> Result<CiResultComment>
Sourcepub async fn load_workflow_config(
config_path: &str,
) -> Result<WorkflowConfigResult>
pub async fn load_workflow_config( config_path: &str, ) -> Result<WorkflowConfigResult>
Sourcepub async fn generate_detailed_report(
run_id: u64,
status: WorkflowStatus,
jobs: Vec<WorkflowJob>,
) -> Result<String>
pub async fn generate_detailed_report( run_id: u64, status: WorkflowStatus, jobs: Vec<WorkflowJob>, ) -> Result<String>
Auto Trait Implementations§
impl Freeze for ActionsOperations
impl RefUnwindSafe for ActionsOperations
impl Send for ActionsOperations
impl Sync for ActionsOperations
impl Unpin for ActionsOperations
impl UnwindSafe for ActionsOperations
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more