Close stale issues and PRs #359
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 issues and PRs | |
on: | |
schedule: | |
- cron: '30 1 * * *' # every day at 1:30am UTC | |
jobs: | |
stale: | |
runs-on: ubuntu-22.04 | |
permissions: | |
issues: write | |
pull-requests: write | |
steps: | |
- uses: actions/stale@v8 | |
with: | |
stale-issue-message: This issue is stale because it has been open 14 days with no activity. | |
stale-pr-message: This pull request is stale because it has been open 14 days with no activity. | |
close-issue-message: This issue was closed because it has been stalled for 2 days with no activity. You are still welcome to reopen it and continue from where you finished. Best regards Saleor team | |
close-pr-message: This PR request has been closed because it has been stalled for 2 days with no activity. You are still welcome to reopen it and continue from where you finished. Best regards Saleor team | |
days-before-stale: 14 | |
days-before-close: 2 | |
exempt-pr-labels: epic,triage,bug,blocker,backlog,feature,cherry-pick | |
exempt-issue-labels: epic,triage,bug,blocker,backlog,feature,cherry-pick |