forked from huggingface/optimum
-
Notifications
You must be signed in to change notification settings - Fork 0
23 lines (21 loc) · 913 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
name: 'Close stale issues and PRs'
on:
schedule:
- cron: '30 1 * * *'
permissions:
issues: write
pull-requests: write
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v8
with:
stale-issue-message: 'This issue has been marked as stale because it has been open for 30 days with no activity. This thread will be automatically closed in 5 days if no further activity occurs.'
stale-pr-message: 'This PR has been marked as stale because it has been open for 90 days with no activity. This thread will be automatically closed in 30 days if no further activity occurs.'
exempt-issue-labels: 'bug,exporters,good first issue,onnx,onnxruntime,quantization'
days-before-issue-stale: 30
days-before-issue-close: 5
days-before-pr-stale: 90
days-before-pr-close: 30
exempt-all-pr-assignees: true