forked from fholzer/docker-nginx-brotli
-
Notifications
You must be signed in to change notification settings - Fork 56
37 lines (33 loc) · 1.29 KB
/
stale-bot.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: 'Close stale issues and PRs'
on:
schedule:
- cron: '0 1,13 * * *'
jobs:
stale:
runs-on: ubuntu-latest
steps:
# https://github.com/actions/stale
- uses: actions/stale@v9
with:
# global config
operations-per-run: 300
days-before-stale: 30
days-before-close: 90
# issue specific config
stale-issue-label: 'wontfix'
stale-issue-message: >
This issue has been automatically marked as stale because it has not had
recent activity. It will be closed if no further activity occurs. Thank you
for your contributions.
close-issue-message: 'Closing this due to being stale.'
# https://github.com/actions/stale?tab=readme-ov-file#exempt-issue-labels
exempt-issue-labels: 'keep-open'
# pull request specific config
exempt-pr-labels: 'dependencies'
stale-pr-label: 'wontfix'
stale-pr-message: >
This pull request has been automatically marked as stale because it has not had
recent activity. It will be closed if no further activity occurs. Thank you
for your contributions.
close-pr-message: 'Closing this due to being stale.'
delete-branch: true