Skip to content

Mark stale issues and pull requests #26

Mark stale issues and pull requests

Mark stale issues and pull requests #26

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: Mark stale issues and pull requests
on:
workflow_dispatch:
schedule:
- cron: '33 15 * * *'
jobs:
stale:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/stale@v5
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue is stale because it has been open for 90 days with no activity. Remove stale label or comment to keep this active.'
days-before-stale: 90
days-before-close: -1 # If set to a negative number like -1, the issues or the pull requests will never be closed automatically.
# We can change this once we're comfortable turning this on
stale-pr-message: 'This PR is stale because it has been open for 90 days with no activity.'
stale-issue-label: 'no-issue-activity'
stale-pr-label: 'no-pr-activity'