ci(comment-on-issue): bugfix, polish phrases (#9773) [skip ci]

This commit is contained in:
Rongrong
2022-05-17 07:06:17 +08:00
committed by GitHub
parent 73b553de76
commit eeb37848cb
2 changed files with 26 additions and 23 deletions

View File

@@ -0,0 +1,176 @@
const unified = require('unified');
const parse = require('remark-parse');
const got = require('got');
// @TODO maybe we could use label or some other better ways to distinguish bug/feature issues
const matchTitle = ['路由地址', 'Routes'];
const maintainerURL = 'https://raw.githubusercontent.com/DIYgod/RSSHub/gh-pages/build/maintainer.json';
const successTag = 'Bug Ping: Pinged';
const parseFailTag = 'Bug Ping: Parsing Failed';
const failTag = 'Bug Ping: Not Found';
const v1route = 'Route: v1';
const v2route = 'Route: v2';
// DnD (do-not-disturb) usernames, add yours here to avoid being notified
const dndUsernames = new Set([]);
async function parseBodyRoutes(body, core) {
const ast = await unified().use(parse).parse(body);
// Is this a bug report?
const title = ast.children[0].children[0].value.trim();
core.debug(`title: ${title}`);
if (!matchTitle.some((ele) => ele.localeCompare(title) === 0)) {
return null;
}
let routes = ast.children[1].value.trim();
core.debug(`routes: ${JSON.stringify(routes)}`);
if (routes.localeCompare('NOROUTE') === 0) {
return null;
}
if (routes) {
routes = routes.split(/\r?\n/).filter((n) => n);
const dedup = [...new Set(routes)];
if (dedup.length !== routes.length) {
core.warning('Duplication detected.');
}
core.debug(dedup);
return dedup;
}
throw 'unable to parse the issue body: route does not exist';
}
async function getMaintainersByRoutes(routes, core) {
const maintainers = await got(maintainerURL).json();
return routes.map((e) => {
const m = maintainers[e];
if (m === undefined) {
core.warning(`Route ${e} not found`);
}
return m;
});
}
module.exports = async ({ github, context, core }) => {
const body = context.payload.issue.body;
const issue_facts = {
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
};
const routes = await parseBodyRoutes(body, core).catch((e) => {
core.warning(e);
});
if (routes === null) {
return; // Not a bug report, or NOROUTE
}
if (routes === undefined) {
await github.rest.issues
.addLabels({
...issue_facts,
labels: [parseFailTag],
})
.catch((e) => {
core.warning(e);
});
return;
}
const maintainers = await getMaintainersByRoutes(routes, core);
let successCount = 0;
let emptyCount = 0;
let failedCount = 0;
let comments = '##### Searching for maintainers: \n\n';
for (let i = 0; i < routes.length; i++) {
const route = routes[i];
const main = maintainers[i];
if (main === undefined) {
comments += `- \`${route}\`: **Route not found**\n`;
failedCount += 1;
continue;
}
if (main.length === 0) {
comments += `- \`${route}\`: No maintainer listed, possibly a v1 or misconfigured route\n`;
emptyCount += 1;
continue;
}
if (main.length > 0) {
const pingStr = main
.map((e) => {
if (e in dndUsernames) {
return `\`@${e}\``; // Wrap in an inline code block to make sure no mention will be sent
}
return `@${e}`;
})
.join(' ');
comments += `- \`${route}\`: ${pingStr}\n`;
successCount += 1;
}
}
const labels = [`Count: ${successCount}/${routes.length}`];
if (failedCount > 0) {
labels.push(failTag);
} else {
labels.push(successTag);
}
if (emptyCount > 0) {
labels.push(v1route);
}
if (successCount > 0) {
labels.push(v2route);
}
// Write labels (status, affected route count)
await github.rest.issues
.addLabels({
...issue_facts,
labels,
})
.catch((e) => {
core.warning(e);
});
// Reply to the issue and notify the maintainers (if any)
await github.rest.issues
.createComment({
...issue_facts,
body: `${comments}
> To maintainers: if you are not willing to be disturbed, list your username in \`scripts/workflow/test-issue/call-maintainer.js\`. In this way, your username will be wrapped in an inline code block when tagged so you will not be notified.
如果有任何路由无法匹配issue 将会被自动关闭。如果 issue 和路由无关,请使用 \`NOROUTE\` 关键词,或者留下评论。我们会重新审核。
If there is any route not found, the issue will be closed automatically. Please use \`NOROUTE\` for a route-irrelevant issue or leave a comment if it is a mistake.
`,
})
.catch((e) => {
core.warning(e);
});
if (failedCount > 0) {
await github.rest.issues
.update({
...issue_facts,
state: 'closed',
})
.catch((e) => {
core.warning(e);
});
}
};