This repository has been archived by the owner on Jul 18, 2024. It is now read-only.
Close inactive issues #849
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: 'Close inactive issues' | |
on: | |
schedule: | |
- cron: '0 1 * * *' | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v3 | |
with: | |
stale-issue-message: 'This application has not seen any responses in the last 20 days, so for now it is being closed. Please feel free to re-open if this is relevant, or start a new application for DataCap anytime. Thank you!' | |
stale-pr-message: 'This application has not seen any responses in the last 20 days, so for now it is being closed. Please feel free to re-open if this is relevant, or start a new application for DataCap anytime. Thank you!' | |
close-issue-message: '' | |
days-before-stale: 20 | |
days-before-close: 0 | |
days-before-pr-close: -1 |