Update dependency rancher/cli to v2.7.7 #106
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
# syncs dev branch every time a commit is pushed to the master branch | |
name: Sync dev branch | |
on: | |
pull_request: | |
types: [ closed ] | |
branches: [ master ] | |
jobs: | |
sync-branch: | |
name: Update dev branch | |
if: github.event.pull_request.merged == true | |
runs-on: ubuntu-latest | |
steps: | |
- run: | | |
echo PR #${{ github.event.number }} has been merged | |
- name: Checkout repository | |
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4 | |
- uses: connor-baer/[email protected] | |
with: | |
branch: dev | |
token: ${{ secrets.GITHUB_TOKEN }} | |
force: true |