Merge pull request #416 from 00labs/withdrawable-yield #221
This file contains 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 parent repo | |
on: | |
push: | |
branches: | |
- develop | |
jobs: | |
update: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
repository: 00labs/huma-dapp | |
ref: 'develop' | |
token: ${{ secrets.CI_TOKEN_PUBLIC }} | |
submodules: true | |
- name: Pull & update submodules recursively | |
run: | | |
git submodule update --init --recursive | |
git submodule update --recursive --remote | |
- name: Commit | |
run: | | |
git config user.email "[email protected]" | |
git config user.name "humaci" | |
git add --all | |
git commit -m "Update submodules" || echo "No changes to commit" | |
git push |