UNPKG

@yuki-no/plugin-sdk

Version:

A GitHub Action that tracks changes between repositories. It creates GitHub issues based on commits from a head repository, making it ideal for documentation translation projects.

13 lines (12 loc) 222 B
export type IssueMeta = Readonly<{ title: string; body: string; labels: string[]; }>; export type Issue = { number: number; body: string; labels: string[]; hash: string; isoDate: string; };