diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-04-27 22:07:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-27 22:07:44 +0200 |
commit | c50cdd62706ed00a2bb9e1201ac8aac1b71e9a16 (patch) | |
tree | 4eaab8798a81c02f500ea8531136adb789d8ea75 /.github/scripts | |
parent | 1cb60405548e79f1ec63921540e1c3ebb3ddcc01 (diff) | |
download | rneovim-c50cdd62706ed00a2bb9e1201ac8aac1b71e9a16.tar.gz rneovim-c50cdd62706ed00a2bb9e1201ac8aac1b71e9a16.tar.bz2 rneovim-c50cdd62706ed00a2bb9e1201ac8aac1b71e9a16.zip |
ci: replace stale bot with custom implementation
The stale action has a bug where it won't close an issue/PR if it has
comments after the stale label.
Diffstat (limited to '.github/scripts')
-rw-r--r-- | .github/scripts/close_unresponsive.js | 50 | ||||
-rw-r--r-- | .github/scripts/remove_response_label.js (renamed from .github/scripts/unstale.js) | 0 |
2 files changed, 50 insertions, 0 deletions
diff --git a/.github/scripts/close_unresponsive.js b/.github/scripts/close_unresponsive.js new file mode 100644 index 0000000000..b7a92207ba --- /dev/null +++ b/.github/scripts/close_unresponsive.js @@ -0,0 +1,50 @@ +function labeledEvent(data) { + return data.event === "labeled" && data.label.name === "needs:response"; +} + +const numberOfDaysLimit = 30; +const close_message = `This has been closed since a request for information has \ +not been answered for ${numberOfDaysLimit} days. It can be reopened when the \ +requested information is provided.`; + +module.exports = async ({ github, context }) => { + const owner = context.repo.owner; + const repo = context.repo.repo; + + const issues = await github.rest.issues.listForRepo({ + owner: owner, + repo: repo, + labels: "needs:response", + }); + const numbers = issues.data.map((e) => e.number); + + for (const number of numbers) { + const timeline = await github.rest.issues.listEventsForTimeline({ + owner: owner, + repo: repo, + issue_number: number, + }); + const data = timeline.data.filter(labeledEvent); + const latest_response_label = data[data.length - 1]; + const created_at = new Date(latest_response_label.created_at); + const now = new Date(); + const diff = now - created_at; + const diffDays = diff / (1000 * 60 * 60 * 24); + + if (diffDays > numberOfDaysLimit) { + github.rest.issues.update({ + owner: owner, + repo: repo, + issue_number: number, + state: "closed", + }); + + github.rest.issues.createComment({ + owner: owner, + repo: repo, + issue_number: number, + body: close_message, + }); + } + } +}; diff --git a/.github/scripts/unstale.js b/.github/scripts/remove_response_label.js index f645fca5cb..f645fca5cb 100644 --- a/.github/scripts/unstale.js +++ b/.github/scripts/remove_response_label.js |