mirror of
https://gitea.com/Lydanne/issues-helper.git
synced 2025-08-19 18:25:58 +08:00
chore: add dist
This commit is contained in:
3
dist/index.js
vendored
3
dist/index.js
vendored
@@ -6126,7 +6126,8 @@ async function doQueryIssues (owner, repo, labels, state) {
|
||||
if (a && b) {
|
||||
if (inactiveDay && typeof(inactiveDay) === 'number') {
|
||||
let lastTime = dayjs.utc().subtract(inactiveDay, 'day');
|
||||
if (iss.updated_at.isSameOrBefore(lastTime)) {
|
||||
let updateTime = dayjs.utc(iss.updated_at);
|
||||
if (updateTime.isSameOrBefore(lastTime)) {
|
||||
issues.push(iss);
|
||||
}
|
||||
} else {
|
||||
|
Reference in New Issue
Block a user