From 2d2512461f062a9aa17fe58ec7a1fd4a74711b8a Mon Sep 17 00:00:00 2001 From: Ajit Koti Date: Sun, 29 Mar 2026 17:31:10 -0700 Subject: [PATCH] Add CI Step to Notify Website --- .github/workflows/notify-website.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/notify-website.yml diff --git a/.github/workflows/notify-website.yml b/.github/workflows/notify-website.yml new file mode 100644 index 0000000..9708df1 --- /dev/null +++ b/.github/workflows/notify-website.yml @@ -0,0 +1,19 @@ +name: Notify Website of Doc Changes + +on: + push: + branches: [main] + paths: + - 'docs/**' + - 'README.md' + +jobs: + notify: + runs-on: ubuntu-latest + steps: + - name: Trigger website sync + uses: peter-evans/repository-dispatch@v3 + with: + token: ${{ secrets.WEBSITE_SYNC_TOKEN }} + repository: multiagentcoordinationprotocol/website + event-type: docs-updated