mirror of
https://github.com/nuxt/ui.git
synced 2026-09-14 19:51:10 +08:00
fa10fb4c1f
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
29 lines
833 B
YAML
29 lines
833 B
YAML
name: reproduction
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '30 1 * * *'
|
|
|
|
jobs:
|
|
reproduction:
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
actions: write
|
|
issues: write
|
|
|
|
steps:
|
|
- uses: actions/stale@v10
|
|
with:
|
|
days-before-stale: -1 # Issues and PR will never be flagged stale automatically.
|
|
stale-issue-label: 'needs reproduction' # Label that flags an issue as stale.
|
|
only-labels: 'needs reproduction' # Only process these issues
|
|
days-before-issue-close: 7
|
|
ignore-updates: true
|
|
remove-stale-when-updated: false
|
|
close-issue-message: |
|
|
Hi! 👋 This issue was closed because it was open for 7 days without a reproduction.
|
|
close-issue-label: 'closed-by-bot'
|
|
operations-per-run: 300 #default 30
|