forked from conjure-cp/conjure-oxide
-
Notifications
You must be signed in to change notification settings - Fork 0
19 lines (18 loc) · 843 Bytes
/
stale.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
name: 'Close stale issues and PRs'
on:
schedule:
- cron: '0 0 * * *' # Run every day at midnight
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
stale-issue-message: 'This issue is marked as stale because it has been inactive for 90 days. If there is no new activity it will be automatically closed in 5 days. You can also mark is as planned to avoid this check.'
days-before-issue-stale: 90
days-before-issue-close: 5
exempt-issue-labels: "planned,goodfirstissue"
stale-pr-message: 'The pull request is marked as stale because it has been inactive for 30 days. If there is no new activity it will be automatically closed in 5 days.'
stale-pr-label: stale
days-before-pr-stale: 30
days-before-pr-close: 5