ci: add notify-parent workflow for monorepo integration

This commit is contained in:
Asep Haryana Saputra
2026-05-29 14:08:23 +07:00
parent 82e77d9f12
commit bdf0f302a7
+24
View File
@@ -0,0 +1,24 @@
name: Notify Parent Repo
on:
push:
branches:
- master
jobs:
dispatch:
runs-on: ubuntu-latest
steps:
- name: Trigger monorepo build
uses: peter-evans/repository-dispatch@v3
with:
token: ${{ secrets.DISPATCH_TOKEN }}
repository: MythEclipse/ultimate-asepharyana.tech
event-type: submodule-updated
client-payload: |
{
"service": "gmw",
"ref": "${{ github.ref }}",
"sha": "${{ github.sha }}",
"actor": "${{ github.actor }}"
}