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

Interface ChannelConfig

packages/bumpy/src/types.ts:98–112  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

96}
97
98export interface ChannelConfig {
99 /** Branch that triggers this channel (required) */
100 branch: string;
101 /** Version suffix (preid), e.g. "rc" → 1.2.0-rc.0. Defaults to the channel name. */
102 preid?: string;
103 /** npm dist-tag for publishes. Defaults to the channel name. */
104 tag?: string;
105 /** Release PR overrides for this channel */
106 versionPr?: {
107 title?: string;
108 branch?: string;
109 /** Enable auto-merge on the release PR */
110 automerge?: boolean;
111 };
112}
113
114export interface SnapshotConfig {
115 /**

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…