UNPKG

@atomist/sdm

Version:

Atomist Software Delivery Machine SDK

13 lines 830 B
import { EventFired, HandleEvent } from "@atomist/automation-client/lib/HandleEvent"; import { HandlerContext } from "@atomist/automation-client/lib/HandlerContext"; import { HandlerResult } from "@atomist/automation-client/lib/HandlerResult"; import { SoftwareDeliveryMachineConfiguration } from "../../../../../api/machine/SoftwareDeliveryMachineOptions"; import { OnAnyFailedSdmGoal } from "../../../../../typings/types"; /** * Skip downstream goals on failed or stopped goal */ export declare class SkipDownstreamGoalsOnGoalFailure implements HandleEvent<OnAnyFailedSdmGoal.Subscription> { configuration: SoftwareDeliveryMachineConfiguration; handle(event: EventFired<OnAnyFailedSdmGoal.Subscription>, context: HandlerContext): Promise<HandlerResult>; } //# sourceMappingURL=SkipDownstreamGoalsOnGoalFailure.d.ts.map