diff options
Diffstat (limited to '.github/issue-tracker-bot.yaml')
-rw-r--r-- | .github/issue-tracker-bot.yaml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/issue-tracker-bot.yaml b/.github/issue-tracker-bot.yaml new file mode 100644 index 0000000..43a3f3d --- /dev/null +++ b/.github/issue-tracker-bot.yaml @@ -0,0 +1,19 @@ +name: "Close stale issues" +on: + schedule: + - cron: "0 1 * * *" + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v3 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + stale-issue-message: 'This issue is marked stale because it has been open 120 days with no activity. Remove stale label or comment or this will be closed in 5 days' + close-issue-message: 'This issue was closed for lack of activity. Feel free to re-open if someone feels like working on it.' + days-before-stale: 120 + days-before-close: 5 + exempt-issue-labels: "bug,build,enhancement,help wanted,in progress" + debug-only: false + operations-per-run: 100 |