Update README.md #119
This file contains 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: Sincronizar Repositorios | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
sync: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout código fuente | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Configurar repositorio remoto | |
run: | | |
git remote add destino https://${{ secrets.GITHUB_TOKEN }}@github.com/UPT-FAING-EPIS/proyecto-si784-2024-ii-u3-reportes_chambilla_llantay.git | |
- name: Sincronizar repositorios | |
run: | | |
git push destino main:main --force |