import { GoalWithFulfillment } from "@atomist/sdm"; /** * The JIRA Approval goal allows you to insert an approval goal into a goal set. The workflow is that when the goal * is scheduled it will execute and create a new sub-issue. It determines where to create the sub-issue by reading the * JIRA issue from the commit message of the push that started the goal set. IF there is NOT a issue key in the commit message * this goal will fail and print a notification that it's missing an issue key. Once the issue is approved, there is another event * handler (onJiraIssueEventApproval) that will parse the incoming message and if the issue was approved (set to Done) set this goal status * to success. */ export declare const JiraApproval: GoalWithFulfillment;