Add workflow to close "needs information" labeled issues

This introduces a workflow to automatically close issues with the label
`status: needs information` after a number of days of inactivity.

This work has been done manually for a number of years, but I think it is safe
to close issues with this label automatically.

Not tested yet, but it is in `debug-only` mode so we can watch what it does before
deciding to turn it on (however it needs to be in `main` for it to run).
This commit is contained in:
Bruno Oliveira 2023-05-10 23:45:13 -03:00
parent f84fea0888
commit 5fb491035f
1 changed files with 22 additions and 0 deletions

22
.github/workflows/stale.yml vendored Normal file
View File

@ -0,0 +1,22 @@
name: close needs-information issues
on:
schedule:
- cron: "30 1 * * *"
jobs:
close-issues:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- uses: actions/stale@v5
with:
debug-only: true
days-before-issue-stale: 14
days-before-issue-close: 7
only-labels: ["status: needs information"]
stale-issue-label: "stale"
stale-issue-message: "This issue is stale because it has been open for 14 days with no activity."
close-issue-message: "This issue was closed because it has been inactive for 7 days since being marked as stale."
days-before-pr-stale: -1
days-before-pr-close: -1