Skip to content

Commit

Permalink
Adiciona action para fechar vagas/issues que estão sem atividade a ma…
Browse files Browse the repository at this point in the history
…is de 60 dais
  • Loading branch information
guibranco committed Jan 6, 2023
1 parent 4c28832 commit 799854a
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/stale-issue.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: "Close stale issues"
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v7
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
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.'
days-before-stale: 60
days-before-close: 5
ascending: true

0 comments on commit 799854a

Please sign in to comment.