Close stale PRs #1086
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Close stale PRs' | |
on: | |
schedule: | |
- cron: '00 02 * * *' | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v4 | |
with: | |
stale-pr-message: 'PR marcado como inativo. O fechamento automático ocorrerá em 5 dias na ausência de nova atividade.' | |
stale-issue-message: 'Bug report marcado como inativo. O fechamento automático ocorrerá em 5 dias na ausência de nova atividade.' | |
stale-pr-label: 'stale' | |
stale-issue-label: 'stale' | |
exempt-pr-labels: 'awaiting-approval,work-in-progress' | |
exempt-issue-labels: 'awaiting-approval,work-in-progress' | |
days-before-pr-stale: 12 | |
days-before-pr-close: 5 | |
days-before-issue-stale: 55 | |
days-before-issue-close: 5 | |