Skip to content
This repository was archived by the owner on Oct 6, 2025. It is now read-only.

Bump the all group with 6 updates (#150) #993

Bump the all group with 6 updates (#150)

Bump the all group with 6 updates (#150) #993

name: Update Submodules
on:
schedule:
- cron: '0 12 * * *'
push:
branches:
- "main"
jobs:
update-modules:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: 📦 Checkout Repository
uses: actions/checkout@v5
- name: Update Submodules
run: |
git submodule update --init --recursive
- name: ✏️ Commit changes
continue-on-error: true
run: |
cd ${{github.workspace}}
git config --global user.email "[email protected]"
git config --global user.name "Orbi-bot"
git add .
git commit -m "auto: generated typescript includes"
git push