1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-27 10:32:58 +02:00
This commit is contained in:
Laurent Cozic 2022-01-08 12:21:27 +00:00
parent 50dc656f65
commit 6a4326e2db

View File

@ -0,0 +1,16 @@
name: 'Close stale issues'
on:
schedule:
- cron: '30 * * * *'
permissions:
issues: write
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v4
with:
debug-only: true
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days.'
days-before-stale: 30
days-before-close: 5