Skip to content

Commit 7d96176

Browse files
authored
Merge pull request #91 from guibranco/patch-2
Encerrar issues abertas por inatividade
2 parents c1127e3 + fd1dd2f commit 7d96176

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/stale-issue.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: "Close stale issues"
2+
on:
3+
schedule:
4+
- cron: "0 0 * * *"
5+
6+
jobs:
7+
stale:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/stale@v3
11+
with:
12+
repo-token: ${{ secrets.GITHUB_TOKEN }}
13+
stale-issue-message: 'Esta vaga encontra-se há um bom tempo sem novas interações. Se ainda estiver aberta, faça um comentário, caso contrario, a fecharemos automaticamente em 5 dias.'
14+
days-before-stale: 60
15+
days-before-close: 5
16+
ascending: true

0 commit comments

Comments
 (0)