Skip to content

Commit

Permalink
Merge pull request #6 from movsic/main
Browse files Browse the repository at this point in the history
Split git diff to 2 separate ci
  • Loading branch information
lkuligin authored Feb 13, 2024
2 parents 2ccddc3 + bcf2b5c commit da64bc9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/scripts/check_diff.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,10 @@
)
):
dirs_to_run.update(LANGCHAIN_DIRS)
elif file.startswith("libs/"):
dirs_to_run.update(LANGCHAIN_DIRS)
elif "libs/genai" in file:
dirs_to_run.update(("libs/genai"))
elif "libs/vertexai" in file:
dirs_to_run.update(("libs/vertexai"))
else:
pass
json_output = json.dumps(list(dirs_to_run))
Expand Down

0 comments on commit da64bc9

Please sign in to comment.