Try stale bot, debug only for now

This commit is contained in:
Janne Valkealahti
2020-12-26 15:33:44 +00:00
parent 0f68d97054
commit fa14d6f2b4

19
.github/workflows/stale-issues.yml vendored Normal file
View File

@@ -0,0 +1,19 @@
name: Stale Issues
on:
workflow_dispatch:
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-stale: 60
days-before-close: 7
stale-issue-message: 'This issue is stale because it has been open 60 days with no activity. Remove status/stale label or comment or this will be closed in 7 days'
stale-issue-label: status/stale
close-issue-label: status/closed-as-stale
exempt-issue-labels: status/on-hold
debug-only: true