Close Stale PR's and Issues #55
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 PR's and Issues | |
on: | |
schedule: | |
- cron: '0 6 * * *' | |
jobs: | |
stale: | |
name: "Closing stale issues & PRs" | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
pull-requests: write | |
steps: | |
- uses: actions/stale@v6 | |
with: | |
days-before-pr-stale: 20 | |
stale-issue-message: | | |
Hi, | |
This issue hasn't seen activity in 60 days. Therefore, we are marking this issue as stale for now. It will be closed after 7 days. | |
Feel free to re-open this issue when there's an update or relevant information to be added. | |
Thanks! | |
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! | |