Skip to content

Add '.github/workflows/' from commit 'cb4016e9691aad2f929fb77e86ed0d0… #1

Add '.github/workflows/' from commit 'cb4016e9691aad2f929fb77e86ed0d0…

Add '.github/workflows/' from commit 'cb4016e9691aad2f929fb77e86ed0d0… #1

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
token: ${{ secrets.AK }}
- name: Git Pull
run: |
git config user.email '[email protected]'
git config user.name 'Mingyuan Qin With Bot'
git submodule foreach git checkout main
git status
git remote -v
git add . -v
git commit -m ${{ github.event.repository.updated_at }}
git push