Skip to content

Commit

Permalink
primer borrador automatización
Browse files Browse the repository at this point in the history
  • Loading branch information
jdarguello committed Apr 25, 2024
1 parent 0fd4005 commit b141eea
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/update-pull-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Actualización del repo oficial sobre la customización
on:
pull-request:
branches:
- 'release/*'
env:
kube-dash: https://github.com/kubernetes/dashboard

jobs:
actualizar-sobre-ultimo-repo:
name: update
runs-on: ubuntu-latest
steps:
- name: Clonar última versión repo banco
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}


0 comments on commit b141eea

Please sign in to comment.