Skip to content
Merged
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
2 changes: 2 additions & 0 deletions src/utils/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ export function isBot(commentData) {
const bodyRegexes = [
new RegExp("This issue has been automatically marked as stale"),
new RegExp("This issue hasn't had any recent activity"),
// GitHub's built-in stale workflow phrasing
new RegExp("This issue has been inactive for \\d+ days"),
];

const { type } = commentData.user;
Expand Down