Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 19 additions & 3 deletions .github/workflows/commitlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,22 @@ on:

jobs:
commit-lint:
uses: UiPath/.github/.github/workflows/commit-lint.yml@master
secrets:
token: ${{ secrets.GITHUB_TOKEN }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Lint commits
uses: wagoid/commitlint-github-action@v3

- name: Block fixup commits
if: ${{ github.event_name != 'merge_group' }}
uses: 13rac1/block-fixup-merge-action@v2.0.0

- name: Block Merge Commits
if: ${{ github.event_name != 'merge_group' }}
uses: Morishiri/block-merge-commits-action@v1.0.1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[project]
name = "uipath-langchain"
version = "0.0.88"
version = "0.0.89"
description = "UiPath Langchain"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.10"
dependencies = [
"uipath>=2.0.4, <2.1.0",
"uipath>=2.0.7, <2.1.0",
"langgraph>=0.2.70",
"langchain-core>=0.3.34",
"langgraph-checkpoint-sqlite>=2.0.3",
Expand Down
8 changes: 4 additions & 4 deletions src/uipath_langchain/_cli/_runtime/_output.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,11 +277,11 @@ async def _save_resume_trigger(self) -> None:
if isinstance(self.interrupt_value, CreateAction):
action = uipath_sdk.actions.create(
title=self.interrupt_value.title,
app_name=self.interrupt_value.name
if self.interrupt_value.name
app_name=self.interrupt_value.app_name
if self.interrupt_value.app_name
else "",
app_key=self.interrupt_value.key
if self.interrupt_value.key
app_key=self.interrupt_value.app_key
if self.interrupt_value.app_key
else "",
app_version=self.interrupt_value.app_version
if self.interrupt_value.app_version
Expand Down
Loading