File tree Expand file tree Collapse file tree 2 files changed +2
-10
lines changed Expand file tree Collapse file tree 2 files changed +2
-10
lines changed Original file line number Diff line number Diff line change @@ -10374,15 +10374,7 @@ async function main() {
10374
10374
const existingTimelineEvents = await helpers.listTimelineEvents(openIssue);
10375
10375
const needsTriageLabelEvent = existingTimelineEvents.find(l => l.event === 'labeled' && l.label?.name === 'needs:triage');
10376
10376
10377
- if (needsTriageLabelEvent && helpers.isOlderThanXWeeks(needsTriageLabelEvent.created_at, 4)) {
10378
- if (helpers.isPendingOnInternal(existingTimelineEvents, needsTriageLabelEvent)) {
10379
- continue;
10380
- }
10381
-
10382
- const issueAssignee = helpers.isTeamRepo() ? '55sketch' : (openIssue?.assignees?.[0]?.login || 'daniellockyer');
10383
- await helpers.leaveComment(openIssue, comments.PING_ASSIGNEE, {'{issue-assignee}': issueAssignee});
10384
- continue;
10385
- }
10377
+ if (false) {}
10386
10378
}
10387
10379
10388
10380
const openPullRequests = await helpers.listOpenPullRequests();
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ async function main() {
47
47
const existingTimelineEvents = await helpers . listTimelineEvents ( openIssue ) ;
48
48
const needsTriageLabelEvent = existingTimelineEvents . find ( l => l . event === 'labeled' && l . label ?. name === 'needs:triage' ) ;
49
49
50
- if ( needsTriageLabelEvent && helpers . isOlderThanXWeeks ( needsTriageLabelEvent . created_at , 4 ) ) {
50
+ if ( false && needsTriageLabelEvent && helpers . isOlderThanXWeeks ( needsTriageLabelEvent . created_at , 4 ) ) {
51
51
if ( helpers . isPendingOnInternal ( existingTimelineEvents , needsTriageLabelEvent ) ) {
52
52
continue ;
53
53
}
You can’t perform that action at this time.
0 commit comments