Skip to content

Close inactive issues #677

Close inactive issues

Close inactive issues #677

name: Close inactive issues
on:
schedule:
- cron: '30 1 * * *'
jobs:
close-issues:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- uses: actions/stale@v9
with:
any-of-labels: '⌛ Status: Awaiting for feedback'
start-date: '2022-05-01 00:00:00.000'
days-before-issue-stale: 14
days-before-issue-close: 14
stale-issue-label: 'stale'
stale-issue-message: "This issue has been marked as 'stale' due to its inactivity for the last 14 days. Please, add a new comment to keep the conversation going; otherwise, the issue will be closed in two weeks."
close-issue-message: 'This issue has been closed due to its inactivity for the last month. Please, feel free to reopen it and add a new comment in case you think the problem has not been resolved.'
days-before-pr-stale: -1
days-before-pr-close: -1
operations-per-run: 50
repo-token: ${{ secrets.GITHUB_TOKEN }}