@dxdeveloperexperience/hygie
Version:
Hygie is an easy-to-use Open-Source REST API allowing you to interact with GIT events. This NestJS API expose a set of customizable rules to automate your project's life cycle.
18 lines (16 loc) • 317 B
text/typescript
import {
GithubIssue,
GithubRepository,
GithubComment,
GithubSender,
} from './github.interface';
/**
* GithubIssuePRCommentEvent dto
*/
export interface GithubIssuePRCommentEvent {
action: string;
issue: GithubIssue;
repository: GithubRepository;
comment: GithubComment;
sender: GithubSender;
}