Skip to content

Commit 1286d4c

Browse files
committed
Merge remote-tracking branch 'origin/main' into zhongzc/repartition-procedure-scaffold
2 parents 3c1d7fc + d8563ba commit 1286d4c

File tree

237 files changed

+12150
-2626
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

237 files changed

+12150
-2626
lines changed

.github/scripts/pr-review-reminder.js

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -57,14 +57,6 @@
5757
return days;
5858
}
5959

60-
// Get urgency emoji based on PR age
61-
function getAgeEmoji(days) {
62-
if (days >= 14) return "🔴"; // 14+ days - critical
63-
if (days >= 7) return "🟠"; // 7+ days - urgent
64-
if (days >= 3) return "🟡"; // 3+ days - needs attention
65-
return "🟢"; // < 3 days - fresh
66-
}
67-
6860
// Build Slack notification message from PR list
6961
function buildSlackMessage(prs) {
7062
if (prs.length === 0) {

.github/workflows/pr-review-reminder.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: PR Review Reminder
22

33
on:
44
schedule:
5-
# Run at 9:00 AM UTC+8 (01:00 AM UTC) every day
6-
- cron: '0 1 * * *'
5+
# Run at 9:00 AM UTC+8 (01:00 AM UTC) on Monday, Wednesday, Friday
6+
- cron: '0 1 * * 1,3,5'
77
workflow_dispatch:
88

99
jobs:

0 commit comments

Comments
 (0)