Add files via upload #26
  
    
      This file contains hidden or 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: Procesado de la encuesta GeoChicas 8M | |
| on: | |
| push: | |
| paths: | |
| - 'data/**' # Cuando hay commit en la carpeta data | |
| workflow_dispatch: # Ejecución manual | |
| jobs: | |
| process-excel: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| - name: Set Up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.13' | |
| - name: Install Dependencies | |
| run: pip install pandas requests validators openpyxl | |
| - name: Run Excel Processing Script | |
| run: python procesar.py | |
| - name: Commit and push changes | |
| run: | | |
| git config --global user.name "GitHub Action" | |
| git config --global user.email "[email protected]" | |
| git add data/ | |
| git commit -m "Encuesta procesada" | |
| git push | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |