Skip to content

Merge branch 'develop' #4

Merge branch 'develop'

Merge branch 'develop' #4

Workflow file for this run

name: Auto Sync
on:
push:
branches:
- main
jobs:
sync:
name: Sync forked repository
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
token: ${{ secrets.DEPLOY_TOKEN }}
- name: Add remote URL
run: |
git remote add forked_repo https://imddoy:${{ secrets.DEPLOY_TOKEN }}@github.com/imddoy/35-COLLABORATION-WEB-MCDONALD
git config user.name imddoy
git config user.email [email protected]
- name: Push Changes to forked_repo
run: |
git push -f forked_repo main
- name: Clean up
run: |
git remote remove forked_repo