uptime-kuma/.github/workflows/stale-bot.yml

23 lines
837 B
YAML
Raw Normal View History

2022-09-11 06:54:33 +00:00
name: 'Automatically close stale issues and PRs'
on:
2022-09-23 16:11:22 +00:00
workflow_dispatch:
2022-09-11 06:54:33 +00:00
schedule:
- cron: '0 */6 * * *'
#Run every 6 hours
2022-09-11 06:54:33 +00:00
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v7
2022-09-11 06:54:33 +00:00
with:
stale-issue-message: 'We are clearing up our old issues and your ticket has been open for 3 months with no activity. Remove stale label or comment or this will be closed in 2 days.'
close-issue-message: 'This issue was closed because it has been stalled for 2 days with no activity.'
2022-09-11 06:54:33 +00:00
days-before-stale: 90
days-before-close: 2
2022-12-05 12:11:28 +00:00
days-before-pr-stale: 999999999
days-before-pr-close: 1
2022-09-11 06:54:33 +00:00
exempt-issue-labels: 'News,Medium,High,discussion,bug,doc,feature-request'
exempt-issue-assignees: 'louislam'
operations-per-run: 200