You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 11, 2023. It is now read-only.
Viendo que el proceso es sencillo se podria poner una github action que lo haga diariamente.
Por supuesto quedará la parte de comprobar los resultados para el que siempre se necesitará una persona...
on:
schedule:
- "* * * * * " # Setup daily at a convenient hour.
steps:
- uses: actions/checkout@v2
- uses: actions/setup-ruby@v1
with:
ruby-version: '2.6' # Version range or exact version of a Ruby version to use, using semvers version range syntax.
- name: download
run: ./fetch.sh
- name: Parse
run: ruby parse.rb > data.csv
- name: commit
run: ...
The text was updated successfully, but these errors were encountered:
Gracias, Luis. De momento lo estoy haciendo a mano hasta que estar seguro de que se estabiliza el formato, porque cada pocos días meten una nueva columna. Pero si veo que ya hemos llegado al formato definitivo lo automatizo, sí, y hacerlo directamente en Github debería ser viable, gracias.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Viendo que el proceso es sencillo se podria poner una github action que lo haga diariamente.
Por supuesto quedará la parte de comprobar los resultados para el que siempre se necesitará una persona...
The text was updated successfully, but these errors were encountered: