@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.
19 lines (18 loc) • 383 B
TypeScript
export type Config = Readonly<{
accessToken: string;
userName: string;
email: string;
upstreamRepoSpec: RepoSpec;
headRepoSpec: RepoSpec;
trackFrom: string;
include: string[];
exclude: string[];
labels: string[];
plugins: string[];
verbose: boolean;
}>;
export type RepoSpec = {
owner: string;
name: string;
branch: string;
};