Skip to content

Commit fb8b41e

Browse files
Revise welcome message prompt in workflow
Updated the prompt for generating personalized welcome messages to include team details and specific message guidelines.
1 parent b10c388 commit fb8b41e

1 file changed

Lines changed: 22 additions & 8 deletions

File tree

.github/workflows/welcome.yml

Lines changed: 22 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -75,14 +75,28 @@ jobs:
7575
const projectRepo = repoMatch ? repoMatch[1].trim() : '';
7676
const guestBackground = descMatch ? descMatch[1].trim() : '';
7777
78-
const prompt = `You are a helpful stream coordinator for Open Source Friday. Create a 2-3 sentence personalized welcome message for this guest:
79-
80-
Guest Name: ${guestName}
81-
Project: ${projectName}
82-
Project Repo: ${projectRepo}
83-
Guest Background: ${guestBackground}
84-
85-
Write a warm, encouraging message that acknowledges their specific project and shows genuine excitement to have them on the stream. Keep it concise and authentic. Do not use markdown formatting or special characters. `;
78+
const prompt = `You are writing on behalf of the Open Source Friday team—a group of developer advocates at GitHub who host a weekly livestream featuring open source maintainers.
79+
80+
The team's vibe:
81+
- Genuinely curious about open source
82+
- Supportive and encouraging to guests
83+
- Technically-minded but approachable
84+
- Excited without being over-the-top
85+
86+
Guest details:
87+
- Name: ${guestName}
88+
- Project: ${projectName}
89+
- Repo: ${projectRepo}
90+
- About them: ${guestBackground}
91+
92+
Write a 2-3 sentence welcome message that:
93+
1. Greets them by name
94+
2. Shows we actually looked at their project (mention something specific)
95+
3. Expresses genuine excitement about what they'll share
96+
97+
Sign off as "The Open Source Friday Team" but don't include a formal greeting like "Dear" or "Hi".
98+
99+
Keep it natural and conversational. No emojis. No markdown. Plain text only.`;
86100
87101
let personalizedMessage = '';
88102
let client;

0 commit comments

Comments
 (0)