Skip to content

Commit 95d109c

Browse files
committed
Session work\n\nAuto-commit at session end to preserve work in progress.\n\nSession-ID: fe7105d4-43e5-4986-9ff9-c8f0a1f4dcb8\nSession-Timestamp: 2026-01-31T00:05:12.324Z\nBranch: 336-feature/please-update-the-gh-context-stop-hook-t\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent 5c4156f commit 95d109c

3 files changed

Lines changed: 240 additions & 122 deletions

File tree

plugins/github-orchestration/hooks/await-pr-status.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ async function handler(
181181
ci_status: ciRun?.status,
182182
vercel_urls: groupedPreviews.vercel,
183183
cloudflare_urls: groupedPreviews.cloudflare,
184-
supabase_urls: groupedPreviews.supabase,
184+
supabase_urls: groupedPreviews.supabase.map(s => s.dashboardUrl),
185185
});
186186

187187
return {

plugins/github-orchestration/hooks/commit-session-await-ci-status.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -819,19 +819,19 @@ function formatPRStatusWithCommit(
819819
}
820820
}
821821

822-
// Cloudflare Previews
822+
// Cloudflare Deployments
823823
if (groupedPreviews.cloudflare.length > 0) {
824-
message += '\n☁️ Cloudflare Worker Previews:\n';
824+
message += '\n☁️ Cloudflare Deployments:\n';
825825
for (const url of groupedPreviews.cloudflare) {
826826
message += ` • ${url}\n`;
827827
}
828828
}
829829

830-
// Supabase Previews
830+
// Supabase Previews (dashboard links)
831831
if (groupedPreviews.supabase.length > 0) {
832832
message += '\n⚡ Supabase Preview Branches:\n';
833-
for (const url of groupedPreviews.supabase) {
834-
message += ` • ${url}\n`;
833+
for (const preview of groupedPreviews.supabase) {
834+
message += ` • ${preview.dashboardUrl}\n`;
835835
}
836836
}
837837

@@ -899,19 +899,19 @@ function formatPRStatusInfo(
899899
}
900900
}
901901

902-
// Cloudflare Previews
902+
// Cloudflare Deployments
903903
if (groupedPreviews.cloudflare.length > 0) {
904-
message += '\n☁️ Cloudflare Worker Previews:\n';
904+
message += '\n☁️ Cloudflare Deployments:\n';
905905
for (const url of groupedPreviews.cloudflare) {
906906
message += ` • ${url}\n`;
907907
}
908908
}
909909

910-
// Supabase Previews
910+
// Supabase Previews (dashboard links)
911911
if (groupedPreviews.supabase.length > 0) {
912912
message += '\n⚡ Supabase Preview Branches:\n';
913-
for (const url of groupedPreviews.supabase) {
914-
message += ` • ${url}\n`;
913+
for (const preview of groupedPreviews.supabase) {
914+
message += ` • ${preview.dashboardUrl}\n`;
915915
}
916916
}
917917

0 commit comments

Comments
 (0)