Skip to content

fix: not sending virtual child doctype data to backend (#276) #218

fix: not sending virtual child doctype data to backend (#276)

fix: not sending virtual child doctype data to backend (#276) #218

Workflow file for this run

name: Sync with upstream branch
on:
push:
branches:
- version-*
jobs:
sync:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Fetch upstream
run: |
git remote add upstream https://github.com/frappe/frappe.git
git fetch upstream
- name: Sync with upstream
run: |
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config user.name "github-actions[bot]"
git merge upstream/${{ github.ref_name }}
- name: Push to origin
run: |
git push origin ${{ github.ref_name }}