mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
91a7fa327f
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
25 lines
843 B
YAML
25 lines
843 B
YAML
name: Close incomplete issues
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '30 1 * * *' # run every day
|
|
|
|
permissions:
|
|
issues: write
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/stale@28ca1036281a5e5922ead5184a1bbf96e5fc984e # v9.0.0
|
|
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: 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
|