Close Stale PRs #78
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 Stale PRs | |
on: | |
schedule: | |
- cron: 0 6 * * * | |
jobs: | |
stale: | |
name: Closing stale PRs | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
pull-requests: write | |
steps: | |
- uses: actions/stale@v6 | |
with: | |
days-before-issue-stale: -1 | |
days-before-pr-stale: 20 | |
stale-pr-message: >- | |
Hi, | |
This PR has not seen activity in 20 days. Therefore, we are marking the PR as stale for now. It will be closed after 7 days. | |
If you need help with the PR, do not hesitate to reach out in the winglang community slack at [winglang.slack.com](https://winglang.slack.com). | |
Feel free to re-open this PR when it is still relevant and ready to be worked on again. | |
Thanks! |