Skip to content

Commit

Permalink
Update update-pull-request.yml
Browse files Browse the repository at this point in the history
Signed-off-by: Jhoan <[email protected]>
  • Loading branch information
JhoanAlvear authored Apr 26, 2024
1 parent 6b6956f commit 09b02b2
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/update-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@ jobs:
name: update
runs-on: ubuntu-latest
steps:
- name: Clonar última versión repo banco
- name: Clonar última versión del repo oficial
uses: actions/checkout@v4
with:
repository: bancolombia/kubernetes-dashboard
ref: ${GITHUB_REF}
- name: Actualizar rama respecto a repo oficial
run: |
git remote add kube-dash ${env.kube-dash}
git pull kube-dash ${GITHUB_REF}
git push origin ${GITHUB_REF}
- name: Agregar remoto del repo oficial
run: git remote add kube-dash ${{ env.kube_dash_url }}
- name: Obtener cambios del repo oficial
run: git fetch kube-dash ${GITHUB_REF}
- name: Actualizar rama local
run: git merge kube-dash/${GITHUB_REF}
- name: Empujar cambios a la rama
run: git push origin ${GITHUB_REF}



0 comments on commit 09b02b2

Please sign in to comment.