Close stale issues #261
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Close stale issues" | |
on: | |
schedule: | |
- cron: "0 4 * * 1,3" | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
if: github.repository_owner == '3liz' | |
steps: | |
- uses: actions/stale@v9 | |
with: | |
repo-token: ${{ secrets.BOT_HUB_TOKEN }} | |
days-before-stale: 60 | |
days-before-close: 14 | |
stale-issue-message: | | |
Hiya! | |
This issue has gone quiet. 👻 | |
We get a few issues, so we currently close issues after 60 days of inactivity. | |
If we missed this issue or if you want to keep it open, please reply here. | |
As a friendly reminder: the best way to see this issue, or any other, fixed is to open a Pull Request. | |
Thanks for being a part of the Lizmap community! 🦎 | |
stale-issue-label: 'Stale' | |
exempt-issue-labels: 'Bug,Feature Request' |