Skip to content

adding test

adding test #1

name: Trigger Quix docs build
on:
push:
paths:
- 'docs/**'
branches:
- task/trigger-quix-docs-build
jobs:
trigger:
runs-on: ubuntu-latest
steps:
- name: Trigger Quix docs build
env:
REPO: 'quixio/quix-docs'
PAT: ${{ secrets.QUIX_DOCS_PAT }}
run: |
curl -X POST \
-H "Authorization: token $PAT" \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/repos/$REPO/dispatches \
-d '{"event_type":"cli_docs_updated"}'