Skip to content

Merge pull request #241 from UiPath/feature/update_context_grounding_… #65

Merge pull request #241 from UiPath/feature/update_context_grounding_…

Merge pull request #241 from UiPath/feature/update_context_grounding_… #65

Workflow file for this run

name: Publish Docs
on:
push:
branches:
- main
paths:
- "docs/**"
- "pyproject.toml"
jobs:
publish-docs:
runs-on: ubuntu-latest
if: ${{ github.repository == 'UiPath/uipath-langchain-python' }}
steps:
- name: Trigger Publish Docs
run: |
repo_owner="uipath"
repo_name="uipath-python"
event_type="publish-docs"
curl -L \
-X POST \
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer ${{ secrets.REPO_ACCESS }}" \
-H "X-GitHub-Api-Version: 2022-11-28" \
https://api.github.com/repos/$repo_owner/$repo_name/dispatches \
-d "{\"event_type\": \"$event_type\", \"client_payload\": {}}"