Skip to content

Commit

Permalink
init repo
Browse files Browse the repository at this point in the history
  • Loading branch information
sareepattamannil committed May 31, 2024
1 parent 027435a commit d7d7a04
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/sync_branches.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Sync Parent Branch

on:
push:
branches:
- parent

jobs:
sync:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Fetch latest changes
run: git fetch origin

- name: Merge changes into parent branch
run: |
git checkout child
git merge origin/parent
git push origin child

0 comments on commit d7d7a04

Please sign in to comment.