You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Patch Pulse Slack Bot notifies your workspace whenever a package you depend on releases a new version — so your team stays informed without having to run the CLI manually.
8
+
The Patch Pulse Slack Bot notifies your workspace whenever a package you depend on releases a new version, updates the message with GitHub release links when they are available, and posts an AI-generated summary in the thread when the release evidence is strong enough.
return`• ${formatSlackPackageLink(outcome.packageName)} — current version ${formatVersion(outcome.displayVersion)}${outcome.filterLabel ? ` ${outcome.filterLabel}` : ''}${outcome.pendingUpdate ? ` (update available: ${formatVersion(outcome.version)})` : ''}`;
200
+
return`• ${formatSlackPackageLink(outcome.packageName)} — current version ${outcome.displayVersionText}${outcome.filterLabel ? ` ${outcome.filterLabel}` : ''}${outcome.pendingUpdate ? ` (update available: ${outcome.versionText})` : ''}`;
166
201
case'updated':
167
-
return`• ${formatSlackPackageLink(outcome.packageName)} — updated threshold to ${outcome.filterLabel??'all'} notifications, current version ${formatVersion(outcome.version)}`;
202
+
return`• ${formatSlackPackageLink(outcome.packageName)} — updated threshold to ${outcome.filterLabel??'all'} notifications, current version ${outcome.versionText}`;
`Updated: now tracking ${formatSlackPackageLink(packageName)}${channelLabel} with ${outcome.filterLabel??'all'} notifications — currently at ${formatVersion(outcome.version)}`,
631
+
`Updated: now tracking ${formatSlackPackageLink(packageName)}${channelLabel} with ${outcome.filterLabel??'all'} notifications — currently at ${outcome.versionText}`,
? ` There's already an update available (${formatVersion(outcome.displayVersion)} → ${formatVersion(outcome.version)}) — I'll notify you about it shortly.`
661
+
? ` There's already an update available (${outcome.displayVersionText} → ${outcome.versionText}) — I'll notify you about it shortly.`
`<@${userId}> is now tracking ${formatSlackPackageLink(packageName)} in this channel — current version ${formatVersion(outcome.displayVersion)}${outcome.filterLabel ? ` ${outcome.filterLabel}` : ''}${updateSuffix}`,
670
+
`<@${userId}> is now tracking ${formatSlackPackageLink(packageName)} in this channel — current version ${outcome.displayVersionText}${outcome.filterLabel ? ` ${outcome.filterLabel}` : ''}${updateSuffix}`,
`You're now tracking ${formatSlackPackageLink(packageName)} — current version ${formatVersion(outcome.displayVersion)}${outcome.filterLabel ? ` ${outcome.filterLabel}` : ''}.${updateSuffix||" I'll DM you when updates are available."}`,
692
+
`You're now tracking ${formatSlackPackageLink(packageName)} — current version ${outcome.displayVersionText}${outcome.filterLabel ? ` ${outcome.filterLabel}` : ''}.${updateSuffix||" I'll DM you when updates are available."}`,
0 commit comments