From bdf0f302a7a51d2db148262d4419eb6d775055b3 Mon Sep 17 00:00:00 2001 From: Asep Haryana Saputra <90584806+MythEclipse@users.noreply.github.com> Date: Fri, 29 May 2026 14:08:23 +0700 Subject: [PATCH] ci: add notify-parent workflow for monorepo integration --- .github/workflows/notify-parent.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/notify-parent.yml diff --git a/.github/workflows/notify-parent.yml b/.github/workflows/notify-parent.yml new file mode 100644 index 0000000..604a46b --- /dev/null +++ b/.github/workflows/notify-parent.yml @@ -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 }}" + }