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