-
Notifications
You must be signed in to change notification settings - Fork 41
29 lines (25 loc) · 1 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
name: Manage stale activities
on:
schedule:
- cron: '0 10 * * *'
jobs:
stale:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/stale@v9
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-stale: 90
# exempt-issue-labels: 'argo-BGC'
stale-issue-message: 'This issue was marked as staled automatically because it has not seen any activity in 90 days'
stale-pr-message: 'This pull request was marked as staled automatically because it has not seen any activity in 90 days'
stale-issue-label: 'stale'
stale-pr-label: 'stale'
days-before-close: 3650
close-issue-label: 'closed-as-stale'
close-pr-label: 'closed-as-stale'
close-issue-message: 'This issue was closed automatically because it has not seen any activity in 365 days'
close-pr-message: 'This pull request was closed automatically because it has not seen any activity in 365 days'