Skip to content

Stale issue handler #50

Stale issue handler

Stale issue handler #50

Workflow file for this run

name: "Stale issue handler"
on:
workflow_dispatch:
schedule:
- cron: "40 23 * * *"
jobs:
stale:
runs-on: ubuntu-latest
if: github.repository_owner == 'turbostarter'
steps:
- uses: actions/stale@v10
id: issue-stale
name: "Mark stale issues, close stale issues"
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
ascending: true
days-before-issue-close: 7
days-before-issue-stale: 14
days-before-pr-stale: -1
days-before-pr-close: -1
remove-issue-stale-when-updated: true
stale-issue-label: "stale"
exempt-issue-labels: "roadmap,next"
stale-issue-message: "This issue has been automatically marked as stale due to 14 days of inactivity. It will be closed in 7 days unless there’s further input. If you believe this issue is still relevant, please leave a comment or provide updated details. Thank you. (This is an automated message)"
close-issue-message: "This issue has been automatically closed due to 14 days of inactivity. If you’re still experiencing a similar problem or have additional details to share, please open a new issue following our current issue template. Your updated report helps us investigate and address concerns more efficiently. Thank you for your understanding! (This is an automated message)"