forked from pydantic/pydantic-ai
-
Notifications
You must be signed in to change notification settings - Fork 0
27 lines (23 loc) · 862 Bytes
/
stale.yml
File metadata and controls
27 lines (23 loc) · 862 Bytes
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: 'Close stale issues and PRs'
on:
schedule:
- cron: '0 14 * * *'
permissions:
issues: write
pull-requests: write
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
any-of-issue-labels: 'question,more info'
days-before-issue-stale: 7
days-before-issue-close: 3
stale-issue-message: 'This issue is stale, and will be closed in 3 days if no reply is received.'
close-issue-message: 'Closing this issue as it has been inactive for 10 days.'
any-of-pr-labels: 'awaiting author revision'
days-before-pr-stale: 14
days-before-pr-close: 7
stale-pr-message: 'This PR is stale, and will be closed in 7 days if no reply is received.'
close-pr-message: 'Closing this PR as it has been inactive for 21 days.'