mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-11-22 07:06:26 +01:00
1ab91370ac
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
19 lines
627 B
YAML
19 lines
627 B
YAML
name: 'Mark & close stale questions'
|
|
on:
|
|
schedule:
|
|
- cron: '42 2 * * *'
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/stale@v9
|
|
with:
|
|
# PRs never get stale
|
|
days-before-stale: 3
|
|
days-before-close: 2
|
|
days-before-pr-stale: -1
|
|
stale-issue-label: 'stale'
|
|
only-labels: 'question'
|
|
stale-issue-message: ''
|
|
close-issue-message: 'This issue has been automatically closed due to inactivity. Feel free to comment in order to reopen or ask again in our Telegram support group at https://t.me/pythontelegrambotgroup.'
|