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.

10 lines (9 loc) 324 B
import type { Config } from './types/config'; export declare const defaults: { readonly userName: "github-actions"; readonly email: "action@github.com"; readonly branch: "main"; readonly label: "sync"; }; export declare const createConfig: () => Config; export declare const inferUpstreamRepo: () => string;