Skip to content

Close stale issues and PRs #1

Close stale issues and PRs

Close stale issues and PRs #1

Workflow file for this run

name: "Close stale issues and PRs"
on:
schedule:
- cron: '00 16 * * *'
jobs:
stale:
permissions:
issues: write
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: gorzelinski/stale@add-reaction-updates
with:
stale-issue-message: "There has been no activity in this issue for five years. Now it is marked as stale and will be closed in 30 days. We know it may be valid, so if you're interested in the solution, leave a comment or reaction."
stale-pr-message: "There has been no activity in this PR for five years. Now it is marked as stale and will be closed in 30 days. We know it may be valid, so if you're interested in the contribution, leave a comment or reaction."
close-issue-message: "We have closed the issue because of the lack of activity since the last year. We know it might be valid, so you can open a similar issue if needed."
close-pr-message: "We have closed the PR because of the lack of activity since the last year. We know it might be valid, so you can open a similar PR if needed."
days-before-stale: 1825
days-before-close: 30
exempt-issue-labels: support
exempt-pr-labels: support
debug-only: true