Type Alias CustomPullRequestRuleResult

CustomPullRequestRuleResult: {
    conclusion:
        | "FAILED"
        | "SUCCESS"
        | "IGNORED"
        | boolean;
    summary?: string;
    title: string;
}

Type declaration

  • conclusion:
        | "FAILED"
        | "SUCCESS"
        | "IGNORED"
        | boolean

    "IGNORED" will be skipped, and the result won't be reported in the checks.

    'true' is the same as "SUCCESS" and 'false' is the same as "FAILED"

  • Optionalsummary?: string
  • title: string