aboutsummaryrefslogtreecommitdiff
path: root/.github/support-tracker-bot.yaml
blob: a7056c8961bc5e0710089c741b433f84f7bdea8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
name: "Close support 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 30 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: 30
          days-before-close: 5
          only-labels: "Track bugs here. Please use google groups instead,Support: use google groups instead"
          exempt-issue-labels: "bug,testing,please test,build,enhancement,help wanted,in progress"
          debug-only: false
          operations-per-run: 100