forked from ctfer-io/chall-manager
-
Notifications
You must be signed in to change notification settings - Fork 1
29 lines (24 loc) · 777 Bytes
/
Copy pathstale.yaml
File metadata and controls
29 lines (24 loc) · 777 Bytes
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: Mark and close stale triage issues
on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
permissions:
issues: write
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@997185467fa4f803885201cee163a9f38240193d # v10.1.1
with:
# Only process issues with "triage" label
only-issue-labels: triage
# Disable PR handling entirely
days-before-pr-stale: -1
days-before-pr-close: -1
# Messages
stale-issue-message: >
This issue has been marked as stale due to 60 days of inactivity.
It will be closed in 7 days if no further activity occurs.
close-issue-message: >
Closing this issue due to prolonged inactivity.