diff options
author | Pjotr Prins | 2021-08-26 09:16:25 +0200 |
---|---|---|
committer | Pjotr Prins | 2021-08-26 09:16:34 +0200 |
commit | f49db1ebe2cb42ff8eaf2049a0570aff25bc64a9 (patch) | |
tree | ed03bd32d86764a21e40cf9f67401c77926fc5ef /.github/support-tracker-bot.yaml | |
parent | db79f4eb0b1d8f42a98759443e14d5f83719566a (diff) | |
download | pangemma-f49db1ebe2cb42ff8eaf2049a0570aff25bc64a9.tar.gz |
Add github-ci
Diffstat (limited to '.github/support-tracker-bot.yaml')
-rw-r--r-- | .github/support-tracker-bot.yaml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/.github/support-tracker-bot.yaml b/.github/support-tracker-bot.yaml new file mode 100644 index 0000000..a7056c8 --- /dev/null +++ b/.github/support-tracker-bot.yaml @@ -0,0 +1,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 |