Lock Inactive Issues #15502
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Lock Inactive Issues' | |
on: | |
schedule: | |
# Every day at 6 AM | |
- cron: '0 6 * * *' | |
jobs: | |
lock: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: dessant/lock-threads@v5 | |
with: | |
github-token: ${{ github.token }} | |
issue-inactive-days: '15' | |
process-only: 'issues' |