Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import type { OwnerContext } from "@/types/drip-emails";
* Body:
* Hi Alice - you installed GitAuto for acme back in Jan 2025. Remember? Sorry I didn't follow up sooner.
*
* GitAuto opens unit test PRs to help you hit 90% coverage. It's fire-and-forget, not a tool you sit and prompt. PRs just show up - you review and merge. Here's a quick look: https://www.youtube.com/watch?v=oOzhH1rnVIk
* GitAuto opens unit test PRs to help you hit 90% coverage. It's fire-and-forget, not a tool you sit and prompt. PRs just show up - you review and merge. Here's a quick look: https://www.youtube.com/watch?v=jmTQuuJAs38
*
* I'll walk you through getting set up over the next few emails.
*
Expand All @@ -21,7 +21,7 @@ import type { OwnerContext } from "@/types/drip-emails";
* Body:
* Hi Alice - you installed GitAuto for acme back in Jan. Remember? Sorry I didn't follow up sooner.
*
* GitAuto opens unit test PRs to help you hit 90% coverage. It's fire-and-forget, not a tool you sit and prompt. PRs just show up - you review and merge. Here's a quick look: https://www.youtube.com/watch?v=oOzhH1rnVIk
* GitAuto opens unit test PRs to help you hit 90% coverage. It's fire-and-forget, not a tool you sit and prompt. PRs just show up - you review and merge. Here's a quick look: https://www.youtube.com/watch?v=jmTQuuJAs38
*
* I'll walk you through getting set up over the next few emails.
*
Expand All @@ -33,7 +33,7 @@ import type { OwnerContext } from "@/types/drip-emails";
* Body:
* Hi Alice - you installed GitAuto for acme a few weeks ago. Remember? Sorry I didn't follow up sooner.
*
* GitAuto opens unit test PRs to help you hit 90% coverage. It's fire-and-forget, not a tool you sit and prompt. PRs just show up - you review and merge. Here's a quick look: https://www.youtube.com/watch?v=oOzhH1rnVIk
* GitAuto opens unit test PRs to help you hit 90% coverage. It's fire-and-forget, not a tool you sit and prompt. PRs just show up - you review and merge. Here's a quick look: https://www.youtube.com/watch?v=jmTQuuJAs38
*
* I'll walk you through getting set up over the next few emails.
*
Expand All @@ -52,7 +52,7 @@ export const generateDormantReintroEmail = (

return `Hi ${firstName} - you installed GitAuto for ${ownerName} ${when}. Remember? Sorry I didn't follow up sooner.

GitAuto opens unit test PRs to help you hit 90% coverage. It's fire-and-forget, not a tool you sit and prompt. PRs just show up - you review and merge. Here's a quick look: ${ABSOLUTE_URLS.YOUTUBE.INTRO_1MIN}
GitAuto opens unit test PRs to help you hit 90% coverage. It's fire-and-forget, not a tool you sit and prompt. PRs just show up - you review and merge. Here's a quick look: ${ABSOLUTE_URLS.YOUTUBE.DEMO}

I'll walk you through getting set up over the next few emails.

Expand Down
2 changes: 0 additions & 2 deletions config/urls.ts
Original file line number Diff line number Diff line change
Expand Up @@ -163,8 +163,6 @@ export const ABSOLUTE_URLS = {
DEMO: "https://www.youtube.com/watch?v=jmTQuuJAs38",
DEMO_EMBED:
"https://www.youtube.com/embed/jmTQuuJAs38?autoplay=1&mute=1&loop=1&playlist=jmTQuuJAs38&rel=0&cc_load_policy=1",
INTRO_1MIN: "https://www.youtube.com/watch?v=oOzhH1rnVIk",
INTRO_3MIN: "https://www.youtube.com/watch?v=QvzEzJ9GJzU&t=6s",
},
ATLASSIAN: {
MARKETPLACE: "https://marketplace.atlassian.com/apps/1236220/gitauto",
Expand Down
87 changes: 87 additions & 0 deletions types/supabase.ts
Original file line number Diff line number Diff line change
Expand Up @@ -445,6 +445,93 @@ export type Database = {
},
];
};
marketing_coverage: {
Row: {
created_at: string;
id: number;
line_coverage: number | null;
lines: number | null;
owner_id: number;
owner_name: string;
repo_id: number;
repo_name: string;
source: string;
updated_at: string;
};
Insert: {
created_at?: string;
id?: number;
line_coverage?: number | null;
lines?: number | null;
owner_id: number;
owner_name: string;
repo_id: number;
repo_name: string;
source: string;
updated_at?: string;
};
Update: {
created_at?: string;
id?: number;
line_coverage?: number | null;
lines?: number | null;
owner_id?: number;
owner_name?: string;
repo_id?: number;
repo_name?: string;
source?: string;
updated_at?: string;
};
Relationships: [];
};
marketing_users: {
Row: {
created_at: string;
email: string;
email_source: string;
first_name: string | null;
id: number;
last_name: string | null;
owner_id: number;
owner_name: string;
repo_id: number;
repo_name: string;
updated_at: string;
user_id: number;
username: string;
};
Insert: {
created_at?: string;
email: string;
email_source: string;
first_name?: string | null;
id?: number;
last_name?: string | null;
owner_id: number;
owner_name: string;
repo_id: number;
repo_name: string;
updated_at?: string;
user_id: number;
username: string;
};
Update: {
created_at?: string;
email?: string;
email_source?: string;
first_name?: string | null;
id?: number;
last_name?: string | null;
owner_id?: number;
owner_name?: string;
repo_id?: number;
repo_name?: string;
updated_at?: string;
user_id?: number;
username?: string;
};
Relationships: [];
};
npm_tokens: {
Row: {
created_at: string;
Expand Down
Loading