mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-05 12:21:31 +08:00
chore: reopen and test pr/issue after edited
This commit is contained in:
@@ -40,7 +40,7 @@ async function parseBodyRoutes(body, core) {
|
||||
return dedup;
|
||||
}
|
||||
|
||||
throw 'unable to parse the issue body: route does not exist';
|
||||
throw Error('unable to parse the issue body: route does not exist');
|
||||
}
|
||||
|
||||
async function getMaintainersByRoutes(routes, core) {
|
||||
@@ -64,6 +64,17 @@ module.exports = async ({ github, context, core }) => {
|
||||
repo: context.repo.repo,
|
||||
};
|
||||
|
||||
if (context.payload.issue.state === 'closed') {
|
||||
await github.rest.issues
|
||||
.update({
|
||||
...issue_facts,
|
||||
state: 'open',
|
||||
})
|
||||
.catch((e) => {
|
||||
core.warning(e);
|
||||
});
|
||||
}
|
||||
|
||||
const routes = await parseBodyRoutes(body, core).catch((e) => {
|
||||
core.warning(e);
|
||||
});
|
||||
@@ -155,15 +166,15 @@ module.exports = async ({ github, context, core }) => {
|
||||
|
||||
> 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.
|
||||
如果所有路由都无法匹配,issue 将会被自动关闭。如果 issue 和路由无关,请使用 \`NOROUTE\` 关键词,或者留下评论。我们会重新审核。
|
||||
If all routes can not be 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) {
|
||||
if (failedCount && emptyCount === 0 && successCount === 0) {
|
||||
await github.rest.issues
|
||||
.update({
|
||||
...issue_facts,
|
||||
|
||||
Reference in New Issue
Block a user