2020-03-20 09:59:35 -04:00
|
|
|
/**
|
|
|
|
* @license
|
2020-05-19 15:08:49 -04:00
|
|
|
* Copyright Google LLC All Rights Reserved.
|
2020-03-20 09:59:35 -04:00
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
|
|
|
import {parse as parseYaml} from 'yaml';
|
2020-07-20 14:53:26 -04:00
|
|
|
import {PullApproveGroup} from './group';
|
2020-03-20 09:59:35 -04:00
|
|
|
|
|
|
|
export interface PullApproveGroupConfig {
|
2020-04-16 14:12:25 -04:00
|
|
|
conditions?: string[];
|
2020-04-06 14:03:40 -04:00
|
|
|
reviewers?: {
|
2020-03-20 09:59:35 -04:00
|
|
|
users: string[],
|
2020-03-30 11:44:30 -04:00
|
|
|
teams?: string[],
|
|
|
|
}|{
|
2020-03-20 09:59:35 -04:00
|
|
|
teams: string[],
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface PullApproveConfig {
|
|
|
|
version: number;
|
|
|
|
github_api_version?: string;
|
|
|
|
pullapprove_conditions?: {
|
|
|
|
condition: string,
|
|
|
|
unmet_status: string,
|
|
|
|
explanation: string,
|
|
|
|
}[];
|
|
|
|
groups: {
|
|
|
|
[key: string]: PullApproveGroupConfig,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export function parsePullApproveYaml(rawYaml: string): PullApproveConfig {
|
2020-05-04 11:16:56 -04:00
|
|
|
return parseYaml(rawYaml, {merge: true}) as PullApproveConfig;
|
2020-03-30 11:44:30 -04:00
|
|
|
}
|
2020-07-20 14:53:26 -04:00
|
|
|
|
|
|
|
/** Parses all of the groups defined in the pullapprove yaml. */
|
|
|
|
export function getGroupsFromYaml(pullApproveYamlRaw: string): PullApproveGroup[] {
|
|
|
|
/** JSON representation of the pullapprove yaml file. */
|
|
|
|
const pullApprove = parsePullApproveYaml(pullApproveYamlRaw);
|
|
|
|
return Object.entries(pullApprove.groups).reduce((groups, [groupName, group]) => {
|
|
|
|
return groups.concat(new PullApproveGroup(groupName, group, groups));
|
|
|
|
}, [] as PullApproveGroup[]);
|
|
|
|
}
|