This repository was archived by the owner on Mar 25, 2026. It is now read-only.
fix broken pipe #9
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Full Docs Sync to Vector Store | |
| on: | |
| push: | |
| jobs: | |
| sync: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Collect and validate files | |
| run: | | |
| ./bin/collect-all-files.sh | \ | |
| ./bin/validate-files.sh > all-files.txt | |
| echo "Files to sync:" | |
| cat all-files.txt | |
| - name: Build and send payload | |
| env: | |
| AGENTUITY_TOKEN: ${{ secrets.AGENTUITY_TOKEN }} | |
| run: | | |
| cat all-files.txt | \ | |
| ./bin/build-payload.sh "${{ github.repository }}" full | \ | |
| ./bin/send-webhook.sh "https://agentuity.ai/webhook/f61d5ce9d6ed85695cc992c55ccdc2a6" "Bearer $AGENTUITY_TOKEN" |