UNPKG

@yuki-no/plugin-release-tracking

Version:

Release tracking plugin for yuki-no - Tracks release status for commits and manages issue labels/comments automatically

12 lines (11 loc) 297 B
import type { Git } from '@yuki-no/plugin-sdk/infra/git'; type Tag = { version: string; url: string; }; export type ReleaseInfo = { prerelease: Tag | undefined; release: Tag | undefined; }; export declare const getRelease: (git: Git, commitHash: string) => ReleaseInfo; export {};