Stale issue/PR handling #10
This file contains hidden or 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: 'Stale issue/PR handling' | |
on: | |
schedule: | |
- cron: '0 0 * * 1' # Run every monday at midnight | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v9 | |
with: | |
days-before-stale: 150 | |
days-before-close: -1 | |
stale-issue-label: '❄️ stale' | |
stale-issue-message: 'This issue had no contributions for some time. It will be marked as stale and may be closed upon further inspection.' | |
stale-pr-label: '❄️ stale' | |
stale-pr-message: 'This pull-request had no contributions for some time. It will be marked as stale and may be closed upon further inspection.' |