SD2 1118 make eden ai chat api open ai compatible #238
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: circleCI | |
on: | |
pull_request: | |
types: [opened,reopened] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Tickle CircleCI | |
env: | |
CIRCLE_BRANCH: ${{ github.head_ref }} | |
CIRCLE_TOKEN: ${{ secrets.CIRCLE_TOKEN }} | |
run: | | |
curl -X POST \ | |
-H "Circle-Token: ${CIRCLE_TOKEN}" \ | |
-H 'Content-Type: application/json' \ | |
-H 'Accept: application/json' \ | |
-d "{\"branch\":\"${CIRCLE_BRANCH}\"}" \ | |
https://circleci.com/api/v2/project/edenai-apis/pipeline |