-
Notifications
You must be signed in to change notification settings - Fork 0
62 lines (52 loc) · 2.27 KB
/
stale.yml
File metadata and controls
62 lines (52 loc) · 2.27 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: Mark Stale Issues and PRs
on:
schedule:
# Run every Monday at 9 AM UTC
- cron: '0 9 * * 1'
workflow_dispatch:
permissions:
contents: read
issues: write
pull-requests: write
jobs:
stale:
name: Mark Stale Issues and PRs
runs-on: ubuntu-latest
steps:
- name: Mark stale issues and PRs
uses: actions/stale@v10
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
# Issues configuration
stale-issue-message: |
This issue has been automatically marked as stale because it has not had recent activity.
It will be closed if no further activity occurs within 7 days.
Thank you for your contributions! If you're still experiencing this issue or have questions,
please add a comment or update the issue to keep it active.
close-issue-message: |
This issue was automatically closed due to inactivity.
If you believe this issue is still relevant, please feel free to reopen it or create a new one.
days-before-issue-stale: 60
days-before-issue-close: 7
stale-issue-label: 'stale'
exempt-issue-labels: 'pinned,security,bug,enhancement,documentation'
# Pull Requests configuration
stale-pr-message: |
This pull request has been automatically marked as stale because it has not had recent activity.
It will be closed if no further activity occurs within 7 days.
Thank you for your contribution! If you're still working on this PR, please:
- Add a comment to let us know you're still working on it
- Push new commits to update the PR
- Request a review if it's ready for review
close-pr-message: |
This pull request was automatically closed due to inactivity.
If you'd like to continue working on this, please feel free to reopen it or create a new PR.
days-before-pr-stale: 30
days-before-pr-close: 7
stale-pr-label: 'stale'
exempt-pr-labels: 'pinned,security,work-in-progress,ready-for-review'
# General configuration
operations-per-run: 30
remove-stale-when-updated: true
ascending: true
delete-branch: false