Skip to content

Commit

Permalink
Add stale action for PR and Issues (python#2383)
Browse files Browse the repository at this point in the history
Esta es una propuesta de reemplazo a ladibug para gestionar el estado de
Issues y PRs que han estado sin movimiento en un periodo de tiempo.

Closes python#628
Reemplaza python#629

---------

Co-authored-by: Cristián Maureira-Fredes <cmaureir@users.noreply.github.com>
Co-authored-by: Carlos A. Crespo <lvccrespo@gmail.com>
  • Loading branch information
3 people authored Oct 17, 2023
1 parent 4a02cae commit 169b71e
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/stale.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: 'Cierra issues y PRs antiguos'
on:
schedule:
- cron: '30 1 * * *'

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v8
with:
stale-pr-label: 'needs decision'
stale-issue-label: 'stale'
days-before-issue-stale: 10
days-before-pr-stale: 7
days-before-pr-close: 21
stale-issue-message: 'Este issue lleva un tiempo sin actualizaciones. ¿Estás trabajando todavía?\nSi necesitas ayuda :sos: no dudes en contactarnos en nuestro [grupo de Telegram](https://t.me/python_docs_es).'
stale-pr-message: 'Este PR lleva un tiempo sin actualizaciones. Vamos a pedir a un admin de nuestro equipo que decida si alguien más puede finalizarlo o si tenemos que cerrarlo.\nPor favor, avisanos en caso de que aún puedas terminarlo.'

0 comments on commit 169b71e

Please sign in to comment.