Skip to content

Commit 91b427e

Browse files
committed
Simplify PR welcome messages to be more concise
Remove verbose listings of individual CI checks and workflows in bot comments. Keep essential functionality (full-ci label, triggering) while reducing noise in PR comments. - Delete redundant pr-welcome-comment.yml workflow - Delete redundant pr-welcome-message.yml workflow - Simplify run-skipped-ci.yml to show status without listing checks This makes PR bot messages cleaner and less overwhelming for contributors.
1 parent 94936ab commit 91b427e

File tree

3 files changed

+4
-62
lines changed

3 files changed

+4
-62
lines changed

.github/workflows/pr-welcome-comment.yml

Lines changed: 0 additions & 22 deletions
This file was deleted.

.github/workflows/pr-welcome-message.yml

Lines changed: 0 additions & 33 deletions
This file was deleted.

.github/workflows/run-skipped-ci.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -207,13 +207,10 @@ jobs:
207207
status = '✅ **Successfully triggered skipped CI checks**';
208208
}
209209
210-
// List the skipped checks we found
211-
const skippedChecksList = skippedChecks.length > 0
212-
? `\n**Skipped checks detected:**\n${skippedChecks.map(c => `- ${c.name} (${c.workflow_name})`).join('\n')}`
213-
: '';
214-
215-
const verifiedList = verified.length > 0 ? `\n**Triggered workflows:**\n${verified.map(w => `- ✅ ${w.name}`).join('\n')}` : '';
216-
const notFoundList = notFound.length > 0 ? `\n\n**Triggered but not yet queued (may still start):**\n${notFound.map(w => `- ⏳ ${w.name}`).join('\n')}` : '';
210+
// Don't list individual checks - keep it simple
211+
const skippedChecksList = '';
212+
const verifiedList = '';
213+
const notFoundList = '';
217214
const failedList = failed.length > 0 ? `\n\n**Failed to trigger:**\n${failed.map(f => `- ❌ ${f.workflow}: ${f.error}`).join('\n')}` : '';
218215
219216
// Add full-ci label only if we actually triggered workflows or if checks are already running

0 commit comments

Comments
 (0)