Mark and close stale pull requests #1623
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: Mark and close stale pull requests | |
on: | |
schedule: | |
- cron: "0 0 * * *" # Daily @ 00:00 | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v9 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
days-before-stale: 14 | |
days-before-close: 7 | |
stale-pr-message: | | |
Hello! Thank you for this proposed change to cloud-init. This pull request is now marked as stale as it has not seen any activity in 14 days. If no activity occurs within the next 7 days, this pull request will automatically close. | |
If you are waiting for code review and you are seeing this message, apologies! Please reply, tagging TheRealFalcon, and he will ensure that someone takes a look soon. | |
(If the pull request is closed and you would like to continue working on it, please do tag TheRealFalcon to reopen it.) | |
stale-pr-label: 'stale-pr' |