mirror of https://github.com/Desuuuu/klipper.git
github: Add close-invalid-bot.yaml
The generic stale issue tool wont close an issue that has comments after the initial invalid message. Add a bot to close invalid issues. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
parent
962315a5fc
commit
f9601f70b1
|
@ -0,0 +1,33 @@
|
||||||
|
# Close issues marked as invalid
|
||||||
|
name: "Close issues marked as invalid"
|
||||||
|
on:
|
||||||
|
schedule:
|
||||||
|
- cron: '0 */6 * * * *'
|
||||||
|
jobs:
|
||||||
|
close_invalid:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/github-script@v3
|
||||||
|
with:
|
||||||
|
script: |
|
||||||
|
const issues = await github.issues.listForRepo({
|
||||||
|
owner: context.repo.owner,
|
||||||
|
repo: context.repo.repo,
|
||||||
|
state: 'open',
|
||||||
|
labels: 'invalid',
|
||||||
|
per_page: 100,
|
||||||
|
page: 1
|
||||||
|
});
|
||||||
|
const expireMillis = 1000 * 60 * 60 * 36;
|
||||||
|
const curtime = new Date().getTime();
|
||||||
|
for (var issue of issues.data.values()) {
|
||||||
|
const updatetime = new Date(issue.updated_at).getTime();
|
||||||
|
if (curtime < updatetime + expireMillis)
|
||||||
|
continue;
|
||||||
|
await github.issues.update({
|
||||||
|
owner: context.repo.owner,
|
||||||
|
repo: context.repo.repo,
|
||||||
|
issue_number: issue.number,
|
||||||
|
state: 'closed'
|
||||||
|
});
|
||||||
|
}
|
|
@ -29,14 +29,3 @@ jobs:
|
||||||
exempt-issue-labels: 'enhancement,bug'
|
exempt-issue-labels: 'enhancement,bug'
|
||||||
days-before-stale: 35
|
days-before-stale: 35
|
||||||
days-before-close: 7
|
days-before-close: 7
|
||||||
invalid:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/stale@v3
|
|
||||||
with:
|
|
||||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
stale-issue-label: invalid
|
|
||||||
stale-pr-label: invalid
|
|
||||||
days-before-stale: -1
|
|
||||||
days-before-close: 2
|
|
||||||
remove-stale-when-updated: false
|
|
||||||
|
|
Loading…
Reference in New Issue