27 lines
932 B
YAML
27 lines
932 B
YAML
name: "Batch close stale issues"
|
|
|
|
on:
|
|
# Monthly
|
|
schedule:
|
|
- cron: '0 0 1 * *'
|
|
# Manual trigger
|
|
workflow_dispatch:
|
|
inputs:
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/stale@v8
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
# Close everything older than ~6 months
|
|
days-before-issue-stale: 180
|
|
days-before-issue-close: 0
|
|
any-of-issue-labels: "Source request"
|
|
exempt-issue-labels: do-not-autoclose
|
|
close-issue-message: "In an effort to have a more manageable issue backlog, we're closing older requests that weren't addressed. If you think the source may still benefit others, please [open a new request](https://github.com/tachiyomiorg/tachiyomi-extensions/issues/new?assignees=&labels=Source+request&template=request_source.yml)."
|
|
close-issue-reason: not_planned
|
|
ascending: true
|
|
operations-per-run: 250
|