forked from blossom-editor/blossom
-
Notifications
You must be signed in to change notification settings - Fork 0
28 lines (25 loc) · 814 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
28
name: "Close inactive issues"
on:
schedule:
- cron: "10 15 * * *"
permissions:
issues: write
jobs:
stale:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/stale@v5
with:
debug-only: false
repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-issue-stale: 30
days-before-issue-close: 7
stale-issue-label: "stale"
stale-issue-message: "This issue has been open 30 days with no activity. This will be closed in 7 days."
close-issue-message: "This issue has been automatically marked as stale because it hasn't had any recent activity."
days-before-pr-stale: -1
days-before-pr-close: -1
exempt-issue-labels: bug,enhancement