Skip to content
This repository was archived by the owner on Mar 25, 2026. It is now read-only.

fix broken pipe

fix broken pipe #9

Workflow file for this run

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"