Skip to content

Merge commit 'ef9b4a0115789f324d1906cd69d139978cd7d08d' #16

Merge commit 'ef9b4a0115789f324d1906cd69d139978cd7d08d'

Merge commit 'ef9b4a0115789f324d1906cd69d139978cd7d08d' #16

Workflow file for this run

name: Git Collect
on:
push:
branches:
- main
jobs:
build:
name: Git Collect
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
repository: work-design/engine
ref: main
submodules: true
- name: Git Pull
run: |
git config --global user.email '[email protected]'
git config --global user.name 'Mingyuan Qin With Bot'
git submodule foreach git checkout main
git status
git remote -v
git add . -v
git commit -m 'up'
git push