vectie/moonfish/cancellation does not have a README file
pub(all) struct CancellationFinding {
run_id : String
check : CancellationCheck
status : CancellationStatus
path : String
message : String
} derive(Eq, ToJson, Debug, FromJson)pub(all) struct CancellationReport {
run_id : String
ready : Bool
cancel_phase : RoutinePhase?
artifact_count : Int
findings : Array[CancellationFinding]
summary : String
} derive(Eq, ToJson, Debug, FromJson)fn cancellation_finding(run_id : String, check : CancellationCheck, status : CancellationStatus, path : String, message : String) -> CancellationFindingDependencies