Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Evaluation

import type { Evaluation } from "https://aws-api.deno.dev/v0.3/services/codecommit.ts?docs=full";

Returns information about the approval rules applied to a pull request and whether conditions have been met.

interface Evaluation {
approvalRulesNotSatisfied?: string[] | null;
approvalRulesSatisfied?: string[] | null;
approved?: boolean | null;
overridden?: boolean | null;
}

§Properties

§
approvalRulesNotSatisfied?: string[] | null
[src]

The names of the approval rules that have not had their conditions met.

§
approvalRulesSatisfied?: string[] | null
[src]

The names of the approval rules that have had their conditions met.

§
approved?: boolean | null
[src]

Whether the state of the pull request is approved.

§
overridden?: boolean | null
[src]

Whether the approval rule requirements for the pull request have been overridden and no longer need to be met.