-
Notifications
You must be signed in to change notification settings - Fork 33
22 lines (21 loc) · 1.07 KB
/
stale-bot.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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@v9
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
exempt-issue-labels: epic,triage,bug,blocker,backlog,feature,rfc