Skip to content
This repository was archived by the owner on Feb 7, 2025. It is now read-only.

Commit 51a316e

Browse files
committed
Added stale issue handler
1 parent 5e2ccb5 commit 51a316e

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

Diff for: .github/workflows/stale.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: 'Stale issue handler'
2+
on:
3+
workflow_dispatch:
4+
schedule:
5+
- cron: '0 0 * * *'
6+
7+
jobs:
8+
stale:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/stale@main
12+
id: stale
13+
with:
14+
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days'
15+
days-before-stale: 30
16+
days-before-close: 5
17+
exempt-issue-labels: 'blocked,must,should,keep'
18+
- name: Print outputs
19+
run: echo ${{ join(steps.stale.outputs.*, ',') }}

0 commit comments

Comments
 (0)