From 364a2a7de69eb1c651df3642abc2edf8523d1325 Mon Sep 17 00:00:00 2001 From: KiranSukhavasi Date: Mon, 8 Jul 2024 14:47:32 +0530 Subject: [PATCH] Update ai-review.yaml --- .github/workflows/ai-review.yaml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ai-review.yaml b/.github/workflows/ai-review.yaml index 33fcef62..2fe83b12 100644 --- a/.github/workflows/ai-review.yaml +++ b/.github/workflows/ai-review.yaml @@ -63,13 +63,15 @@ jobs: service_token: bearer ${{ steps.auth.outputs.result }} # TODO: Update 'file_types' with the code file extensions to parse. *Note it is a newline delimited list. file_types: | - .md + .cpp + .js + .txt # TODO: Update 'languages' to include the languages in the repository. *Note it is a newline delimited list. # Supports the following values: 'cpp', 'go', 'java', 'js', 'php', 'proto', 'python', 'rst', 'ruby', 'rust', 'scala', 'swift', 'markdown', 'latex', 'html' languages: | markdown # TODO: Update 'path' to represent the top level path where code files are found. - path: ./src + path: ./docs cache_path: ./cache - name: Create Code Embeddings @@ -83,13 +85,15 @@ jobs: service_token: bearer ${{ steps.auth.outputs.result }} # TODO: Update 'file_types' with the code file extensions to parse. *Note it is a newline delimited list. file_types: | - .ts + .cpp + .js + .txt # TODO: Update 'languages' to include the languages in the repository. *Note it is a newline delimited list. # Supports the following values: 'cpp', 'go', 'java', 'js', 'php', 'proto', 'python', 'rst', 'ruby', 'rust', 'scala', 'swift', 'markdown', 'latex', 'html' languages: | - js + cpp # TODO: Update 'path' to represent the top level path where code files are found. - path: ./src + path: ./docs cache_path: ./cache # Perform Review