ExtBackup/.github/workflows/stale.yml
Jinks b103bcba03
Some checks are pending
publish / publish (push) Waiting to run
Somewhat releasable version.
2024-12-07 00:05:57 +01:00

22 lines
708 B
YAML

# Do not edit this file directly
# This file is synced by https://github.com/ChaoticTrials/ModMeta
name: Close stale issues and PRs
on:
schedule:
- cron: '0 */6 * * *'
jobs:
stale:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- uses: actions/stale@v9
with:
stale-issue-message: The required information were not provided yet. Thus, this was marked as stale.
close-issue-message: None of the required information was ever provided. If this is still an issue, feel free to reopen with the required information, or create a new issue.
only-labels: needs more info
days-before-stale: 7
days-before-close: 3