diff --git a/.github/workflows/stalebot b/.github/workflows/stalebot new file mode 100644 index 0000000..75b6bd4 --- /dev/null +++ b/.github/workflows/stalebot @@ -0,0 +1,16 @@ +name: 'Close stale issues and PR' +on: + schedule: + - cron: '30 1 * * *' + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v9 + with: + stale-issue-message: 'This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 5 days.' + close-issue-message: 'This issue was closed because it has been stalled for 10 days with no activity.' + days-before-stale: 60 + days-before-close: 10 + days-before-pr-close: -1