Skip to content

Commit ff395b9

Browse files
authored
ci: replace probot with actions workflow
Probot is basically discontinued, even though it's not 100% clear...
1 parent 29f94b7 commit ff395b9

File tree

2 files changed

+26
-19
lines changed

2 files changed

+26
-19
lines changed

.github/stale.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.

.github/workflows/stale.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: 'Close stale issues and PR'
2+
on:
3+
schedule:
4+
- cron: '00 5 * * *'
5+
workflow_dispatch:
6+
7+
jobs:
8+
stale:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/stale@v5
12+
with:
13+
days-before-stale: 20
14+
days-before-close: 5
15+
stale-issue-message: >
16+
This issue has been automatically marked as stale because it has not had
17+
recent activity. It will be closed if no further activity occurs. Thank you
18+
for your contributions.
19+
stale-pr-message: >
20+
This PR has been automatically marked as stale because it has not had
21+
recent activity. It will be closed if no further activity occurs. Thank you
22+
for your contributions.
23+
stale-issue-label: 'status: stale'
24+
stale-pr-label: 'status: stale'
25+
exempt-issue-labels: 'pinned,security,status: pinned,type: security'
26+
exempt-pr-labels: 'pinned,security,status: pinned,type: security'

0 commit comments

Comments
 (0)