forked from optuna/optuna
-
Notifications
You must be signed in to change notification settings - Fork 0
27 lines (23 loc) · 978 Bytes
/
stale.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
name: stale
on:
schedule:
- cron: '0 23 * * SUN-THU'
jobs:
stale:
runs-on: ubuntu-latest
if: github.repository == 'optuna/optuna'
steps:
- uses: actions/stale@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue has not seen any recent activity.'
stale-pr-message: 'This pull request has not seen any recent activity.'
close-issue-message: 'This issue was closed automatically because it had not seen any recent activity. If you want to discuss it, you can reopen it freely.'
close-pr-message: 'This pull request was closed automatically because it had not seen any recent activity. If you want to discuss it, you can reopen it freely.'
days-before-stale: 14
days-before-close: 100
stale-issue-label: 'stale'
stale-pr-label: 'stale'
exempt-issue-labels: 'no-stale'
exempt-pr-labels: 'no-stale'
operations-per-run: 1000