Skip to content

SyncAtomUIProgrammingBible #63

SyncAtomUIProgrammingBible

SyncAtomUIProgrammingBible #63

name: SyncAtomUIProgrammingBible
on:
schedule:
- cron: '0 3 * * *'
workflow_dispatch:
jobs:
SyncAtomUIProgrammingBible:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: develop
fetch-depth: 0
- name: Add Upstream
run: |
git remote add upstream https://github.com/chinware/AtomUIProgrammingBible.git
git fetch upstream --tags
- name: Merge Changes
run: |
git checkout develop
git merge upstream/develop
git push origin develop
- name: Push Tags
run: git push origin --tags --force