UNPKG

488 BTypeScriptView Raw
1import { Auto, IPlugin } from '@intuit-auto/core';
2interface IReleasedLabelPluginOptions {
3 message: string;
4 label: string;
5 lockIssues: boolean;
6}
7export default class ReleasedLabelPlugin implements IPlugin {
8 name: string;
9 readonly options: IReleasedLabelPluginOptions;
10 constructor(options?: Partial<IReleasedLabelPluginOptions>);
11 apply(auto: Auto): void;
12 private addReleased;
13 private addCommentAndLabel;
14 private createReleasedComment;
15}
16export {};