-
-
Notifications
You must be signed in to change notification settings - Fork 68
28 lines (26 loc) · 972 Bytes
/
stale.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name: "Close stale issues and PRs"
on:
schedule:
- cron: "30 23 * * *"
jobs:
stale:
runs-on: ubuntu-latest
permissions:
issues: read
pull-requests: write
steps:
- uses: actions/stale@v9.0.0
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
exempt-assignees: "pouriyajamshidi"
exempt-pr-labels: "security"
exempt-issue-labels: "security"
stale-pr-message: |
This pull request has been automatically marked as stale because it has not had recent activity.
It will be closed in 7 days if no further activity occurs.
Let's figure out how to push this issue forward together by commenting here.
Thank you for your contribution!
close-pr-message: |
This pull request has been automatically closed because it has not had recent activity or follow ups.
days-before-stale: 30
days-before-close: 7