forked from exercism/python
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (36 loc) Β· 1.62 KB
/
stale.yml
File metadata and controls
40 lines (36 loc) Β· 1.62 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
name: "Close stale issues"
on:
schedule:
- cron: "30 1 * * *"
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-stale: 21
days-before-close: 7
# Milestones on an issue or a PR exempted from being marked as stale.
exempt-milestones: true
# Exempt all issues with milestones from being marked as stale.
exempt-all-issue-milestones: true
exempt-issue-labels: 'discussion π¬,pinned π,enhancement π¦ β,beginner friendly,maintainer action requiredβ,on hold βπ½'
stale-issue-label: abandoned π
stale-issue-message: >
This issue has been automatically marked as `abandoned π`
because it has not had recent activity. It will be closed if no
further activity occurs. Thank you
for your contributions.
close-issue-message: >
Closing stale issue. If this issue is still relevant,
please reopen it.
exempt-pr-labels: 'pinned π,enhancement π¦ β,please review π,maintainer action required β'
stale-pr-label: abandoned π
stale-pr-message: >
This pull request has been automatically marked as `abandoned π`
because it has not had recent activity. It will be closed if no
further activity occurs. Thank you for your contributions.
close-pr-message: >
Closing stale pull request. If you are still working on this,
please reopen this pull request.