From 2a5ab8b6d5bf9cb90906b18b13f8491ccb3a6dd5 Mon Sep 17 00:00:00 2001 From: asepharyana Date: Sat, 25 Jul 2026 15:11:38 +0700 Subject: [PATCH] ci(llm-api): add notify-parent workflow Trigger repository_dispatch to parent hub repo on push to master. Co-Authored-By: Claude Code --- .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..0245305 --- /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 root monorepo build + uses: peter-evans/repository-dispatch@v3 + with: + token: ${{ secrets.DISPATCH_TOKEN }} + repository: asepharyana/asepharyana-hub + event-type: submodule-updated + client-payload: | + { + "service": "llm-api", + "ref": "${{ github.ref }}", + "sha": "${{ github.sha }}", + "actor": "${{ github.actor }}" + } \ No newline at end of file