diff options
Diffstat (limited to '.github/scripts/unstale.js')
-rw-r--r-- | .github/scripts/unstale.js | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/.github/scripts/unstale.js b/.github/scripts/unstale.js deleted file mode 100644 index f645fca5cb..0000000000 --- a/.github/scripts/unstale.js +++ /dev/null @@ -1,19 +0,0 @@ -module.exports = async ({ github, context }) => { - const commenter = context.actor; - const issue = await github.rest.issues.get({ - owner: context.repo.owner, - repo: context.repo.repo, - issue_number: context.issue.number, - }); - const author = issue.data.user.login; - const labels = issue.data.labels.map((e) => e.name); - - if (author === commenter && labels.includes("needs:response")) { - github.rest.issues.removeLabel({ - owner: context.repo.owner, - repo: context.repo.repo, - issue_number: context.issue.number, - name: "needs:response", - }); - } -}; |