forked from emqx/emqx
-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (30 loc) · 947 Bytes
/
stale.yaml
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
---
name: Manage stale issues
on:
schedule:
# run hourly
- cron: "0 * * * *"
workflow_dispatch:
jobs:
stale:
runs-on: ubuntu-22.04
if: github.repository_owner == 'emqx'
permissions:
issues: write
pull-requests: none
steps:
- name: Close Stale Issues
uses: actions/stale@v6
with:
days-before-stale: 7
days-before-close: 7
exempt-issue-labels: 'internal,BUG,help wanted,#triage/accepted,#needs-triage,Feature,Enhancement'
stale-issue-label: "#triage/stale"
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. Thank you
for your contributions.
# we don't want stalebot to analyze pull requests
only-pr-labels: "ZZZDisabledZZZ"
operations-per-run: 80
...