mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
37 lines
1.0 KiB
YAML
37 lines
1.0 KiB
YAML
name: stale
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '30 1 * * *'
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
actions: write
|
|
issues: write
|
|
|
|
steps:
|
|
- uses: actions/stale@52ba5a3ff1187e527a8a9b699ffb1c6f1b4c8bbd
|
|
with:
|
|
days-before-pr-stale: -1
|
|
days-before-stale: 60
|
|
days-before-close: 7
|
|
stale-issue-label: 'stale'
|
|
close-issue-label: 'closed-by-bot'
|
|
close-issue-message: |
|
|
Hi! 👋
|
|
|
|
This issue has been automatically **closed** due to prolonged inactivity.
|
|
|
|
We're a small team and can't address every report, but we appreciate your feedback and contributions.
|
|
|
|
If this issue is still relevant with the latest version of Nuxt UI, please feel free to reopen or create a new issue with updated details.
|
|
|
|
Thank you for your understanding and support!
|
|
|
|
— Nuxt UI Team
|
|
exempt-issue-labels: 'feature,announcement'
|
|
operations-per-run: 300
|
|
cache-prefix: _state_stale |