app/buglists/long-tasks.mjs (33 lines of code) (raw):
import * as BugList from "buglist";
/* eslint-disable camelcase */
export function init($container) {
BugList.append({
id: "long-tasks",
$container: $container,
title: "Longstanding Tasks > 365 days",
description:
"Tasks have been open more than one year. " +
"Bugs with a NEEDINFO request, filed by WPT-sync, or with the " +
"intermittent_failure keyword are ignored.\n" +
"Bugs are order by creation date, oldest first.\n" +
"Timestamp shows bug creation.",
query: {
email1: "wptsync@mozilla.bugs",
emailreporter1: "1",
emailtype1: "notequals",
resolution: "---",
keywords_type: "nowords",
keywords: "intermittent_failure",
f1: "delta_ts",
o1: "lessthan",
v1: "365d",
f2: "flagtypes.name",
o2: "notsubstring",
v2: "needinfo",
f3: "bug_type",
o3: "equals",
v3: "task",
},
usesComponents: true,
});
}