-
Notifications
You must be signed in to change notification settings - Fork 284
31 lines (30 loc) · 1.07 KB
/
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
29
30
31
name: "Close stale issues and PRs"
on:
schedule:
# Once every week at midnight UTC
- cron: "0 0 * * 0"
workflow_dispatch:
jobs:
stale:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- name: Mark/Close Stale Issues and Pull Requests
uses: actions/[email protected]
with:
repo-token: ${{ secrets.STALE_ACTION }}
days-before-stale: 90
days-before-close: 7
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.
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.
exempt-issue-labels: "pinned,security,help wanted,blocked: tokei"
exempt-pr-labels: "blocked: tokei"
stale-issue-label: "stale"
stale-pr-label: "stale"
exempt-draft-pr: "true"