Skip to content

Label inactive issues #680

Label inactive issues

Label inactive issues #680

Workflow file for this run

# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time.
#
# You can adjust the behavior by modifying this file.
# For more information, see:
# https://github.com/actions/stale
name: Label inactive issues
on:
schedule:
- cron: "30 1 * * *"
jobs:
stale:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/stale@v8
with:
stale-issue-label: "Status: Stale"
days-before-issue-stale: 30
days-before-issue-close: -1
stale-issue-message: "This issue is stale because it has had no activity for the last 30 days."
close-issue-message: "This issue was closed because it has been inactive for 14 days since being marked as stale."
days-before-pr-stale: -1
days-before-pr-close: -1
operations-per-run: 100
repo-token: ${{ secrets.GITHUB_TOKEN }}