-
Notifications
You must be signed in to change notification settings - Fork 1k
29 lines (25 loc) · 914 Bytes
/
stale.yml
File metadata and controls
29 lines (25 loc) · 914 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
28
29
name: stale
on:
workflow_dispatch:
schedule:
- cron: '30 1 * * *'
jobs:
stale:
runs-on: ubuntu-latest
permissions:
actions: write
issues: write
steps:
- uses: actions/stale@4c023f01d613e60293d8004f251a18bfb9bbd71d
with:
days-before-pr-stale: -1
days-before-stale: 60
days-before-close: 7
any-of-labels: 'triage,question'
stale-issue-label: 'stale'
stale-issue-message: |
Hi! 👋 This issue has been open for 60 days without activity and will be closed in 7 days. Please comment if it's still relevant.
close-issue-label: 'closed-by-bot'
close-issue-message: |
Hi! 👋 This issue was automatically closed due to inactivity. If it's still relevant with the latest Nuxt UI version, feel free to reopen or create a new issue.
operations-per-run: 300