8000 Add stale action for PR and Issues by erickisos · Pull Request #2383 · python/python-docs-es · GitHub
[go: up one dir, main page]

Skip to content

Add stale action for PR and Issues #2383

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Oct 17, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Add stale action for PR and Issues
  • Loading branch information
erickisos committed Oct 9, 2023
commit fccb9c7acd518c8b809191721b5bd6863690899d
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 * * *'
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

¿A esa hora es por algo en particular? Me da curiosidad jej...

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

número random jajaja, podemos cambiarla pues


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: 'Hola, este issue lleva un tiempo sin novedades. Estás trabajando todavía?\nSi necesitas ayuda :sos: no dudes en contactarnos en nuestro grupo de Telegram.'
stale-pr-message: 'Hola, este PR lleva un tiempo sin novedades. Vamos a pedir a un admin de nuestro equipo que deci 4B8E da si alguien más puede finalizar este PR o si tenemos que cancelarlo.\nPor favor avisanos en caso de que aún puedas tomarte el tiempo para terminarlo'
0