Fixed ik_fast instantiation #3
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: Trigger Parent Repo | |
on: | |
push: | |
branches: | |
- geodude | |
jobs: | |
dispatch: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Trigger parent repo rebuild | |
run: | | |
curl -X POST \ | |
-H "Accept: application/vnd.github+json" \ | |
-H "Authorization: Bearer ${{ secrets.PARENT_REPO_PAT }}" \ | |
https://api.github.com/repos/personalrobotics/mj_geodude/dispatches \ | |
-d '{"event_type":"submodule-updated"}' | |
echo "Triggered parent repo rebuild for submodule updates" |