From 1b398c4ed90f3325205533cd88d7f45dc3f158fe Mon Sep 17 00:00:00 2001 From: Richard Abrich Date: Tue, 3 Mar 2026 17:07:15 -0500 Subject: [PATCH] feat: add docs sync trigger --- .github/workflows/notify-docs.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/notify-docs.yml diff --git a/.github/workflows/notify-docs.yml b/.github/workflows/notify-docs.yml new file mode 100644 index 0000000..7d09e2f --- /dev/null +++ b/.github/workflows/notify-docs.yml @@ -0,0 +1,14 @@ +name: Notify docs +on: + push: + branches: [main] +jobs: + notify: + runs-on: ubuntu-latest + steps: + - uses: peter-evans/repository-dispatch@v3 + with: + token: ${{ secrets.DOCS_DISPATCH_TOKEN }} + repository: OpenAdaptAI/openadapt-maintenance + event-type: repo-updated + client-payload: '{"repo": "${{ github.repository }}", "sha": "${{ github.sha }}"}' \ No newline at end of file