Tachiyomi-Extensions/.github/workflows/batch_close_issues.yml

26 lines
899 B
YAML
Raw Normal View History

name: "Batch close stale issues"
2022-07-22 02:32:11 +00:00
on:
2022-07-22 02:32:11 +00:00
# Monthly
schedule:
- cron: '0 0 1 * *'
# Manual trigger
workflow_dispatch:
inputs:
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
2023-05-26 21:05:15 +00:00
# Close everything older than a year
days-before-issue-stale: 365
days-before-issue-close: 0
2023-05-26 21:05:15 +00:00
exempt-issue-labels: "do-not-autoclose,Meta request"
close-issue-message: "In an effort to have a more manageable issue backlog, we're closing older requests that weren't addressed since there's a low chance of it being addressed if it hasn't already. If your request is still relevant, please [open a new request](https://github.com/tachiyomiorg/tachiyomi-extensions/issues/new/choose)."
close-issue-reason: not_planned
ascending: true
operations-per-run: 250