We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 36eb75f + 05a2d90 commit fb305a9Copy full SHA for fb305a9
.github/workflows/trigger_auto_update.yml
@@ -0,0 +1,19 @@
1
+name: Trigger Parent Repo
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - geodude
7
8
+jobs:
9
+ dispatch:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Trigger parent repo rebuild
13
+ run: |
14
+ curl -X POST \
15
+ -H "Accept: application/vnd.github+json" \
16
+ -H "Authorization: Bearer ${{ secrets.PARENT_REPO_PAT }}" \
17
+ https://api.github.com/repos/personalrobotics/mj_geodude/dispatches \
18
+ -d '{"event_type":"submodule-updated"}'
19
+ echo "Triggered parent repo rebuild for submodule updates"
0 commit comments