This repository was archived by the owner on Oct 6, 2025. It is now read-only.
Update Submodules #1003
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 | |