mirror of
https://github.com/directus/directus.git
synced 2026-04-25 03:00:53 -04:00
23 lines
584 B
YAML
23 lines
584 B
YAML
name: Close Stale Issues
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '30 1 * * *'
|
|
|
|
permissions:
|
|
issues: write
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/stale@v9
|
|
with:
|
|
days-before-stale: -1
|
|
days-before-close: 7
|
|
remove-stale-when-updated: false
|
|
stale-issue-label: ':detective: Needs More Info'
|
|
close-issue-message:
|
|
"Heya! There isn't enough information available to keep investigating this issue at present time, so it'll
|
|
be closed until more information becomes available. Thanks!"
|