Skip to content

Commit df83431

Browse files
scaronniamilonenv
authored andcommitted
Add stale issue management
1 parent 79614fc commit df83431

1 file changed

Lines changed: 29 additions & 0 deletions

File tree

.github/workflows/stale.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Mark stale issues
2+
3+
on:
4+
schedule:
5+
- cron: '0 0 * * 0'
6+
workflow_dispatch:
7+
8+
permissions:
9+
issues: write
10+
11+
jobs:
12+
stale:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/stale@v9
16+
with:
17+
days-before-issue-stale: 180
18+
days-before-issue-close: 30
19+
exempt-issue-labels: 'enhancement,bug'
20+
stale-issue-message: >
21+
This issue has been automatically marked as stale due to inactivity.
22+
Please try to reproduce on the latest version of DKMS and update
23+
with any up to date information.
24+
close-issue-message: >
25+
Closing this issue due to prolonged inactivity. If you are still
26+
experiencing the issue, please reproduce it on the latest version
27+
of DKMS and open a new issue with up to date information.
28+
days-before-pr-stale: -1
29+
days-before-pr-close: -1

0 commit comments

Comments
 (0)