Skip to content

Close stale issues #966

Close stale issues

Close stale issues #966

Workflow file for this run

name: Close stale issues
on:
schedule:
- cron: '30 1 * * *'
permissions:
issues: write
jobs:
stale:
# don't run on forks
if: ${{ github.repository_owner == 'SmartThingsCommunity' }}
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v5
with:
stale-issue-message: 'This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 7 days.'
exempt-issue-labels: 'reviewed'
close-issue-reason: 'not_planned'