Skip to content
This repository was archived by the owner on Dec 26, 2023. It is now read-only.

Commit e10883b

Browse files
authored
adding stale workflow (#246)
1 parent b3a2cb7 commit e10883b

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

frontend/.github/workflows/stale.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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:
15+
'This issue is stale because it has been open 30 days with no
16+
activity. Remove stale label or comment or this will be closed in 15
17+
days'
18+
days-before-stale: 30
19+
days-before-close: 15
20+
exempt-issue-labels: 'blocked,must,should,keep'
21+
- name: Print outputs
22+
run: echo ${{ join(steps.stale.outputs.*, ',') }}

0 commit comments

Comments
 (0)