MCPcopy Create free account
hub / github.com/dmno-dev/bumpy / PublishTargetState

Interface PublishTargetState

packages/bumpy/src/core/github-release.ts:143–153  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

141export type PublishTargetStatus = 'pending' | 'success' | 'failed' | 'skipped';
142
143export interface PublishTargetState {
144 status: PublishTargetStatus;
145 publishedAt?: string;
146 error?: string;
147 lastAttempt?: string;
148 reason?: string;
149 supersededBy?: string;
150 url?: string;
151 /** Human-readable label, e.g. "GitHub Packages" for npm targets on a GHP registry. Falls back to the target key. */
152 label?: string;
153}
154
155export interface ReleaseMetadata {
156 version: string;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…