Skip to content

Close stale PRs

Close stale PRs #1086

Workflow file for this run

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