Skip to content
This repository has been archived by the owner on Nov 13, 2024. It is now read-only.

Update update-submodule.yml #348

Update update-submodule.yml

Update update-submodule.yml #348

name: Update submodule
on:
push:
branches: [ docker-build-fix-patch-1 ]
jobs:
update-submodule:
name: Update Houston's submodule to latest develop
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
repository: 'WildMeOrg/houston'
submodules: true
token: ${{ secrets.PAT_TOKEN }}
- run: |

Check failure on line 17 in .github/workflows/update-submodule.yml

View workflow run for this annotation

GitHub Actions / Update submodule

Invalid workflow file

The workflow is not valid. .github/workflows/update-submodule.yml (Line: 17, Col: 14): Unrecognized named-value: 'git'. Located at position 1 within expression: git config user.name
bash -xe <<EOF
echo ${{ github.actor }}
echo ${{ git config user.name }}
echo ${{ git config user.email }}
git config user.name github-actions
git config user.email [email protected]
cd _frontend.codex
git reset --hard origin/develop
cd ..
git commit -am 'Update _frontend.codex submodule to HEAD of codex-frontend@develop'
git show
git push origin HEAD
EOF