Skip to content

Commit 3d78559

Browse files
authored
Merge pull request #31 from UiPath/fix/action-fields
fix: rename CreateAction fields
2 parents 2db0044 + 67648e7 commit 3d78559

3 files changed

Lines changed: 25 additions & 9 deletions

File tree

.github/workflows/commitlint.yml

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,22 @@ on:
77

88
jobs:
99
commit-lint:
10-
uses: UiPath/.github/.github/workflows/commit-lint.yml@master
11-
secrets:
12-
token: ${{ secrets.GITHUB_TOKEN }}
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout
13+
uses: actions/checkout@v2
14+
with:
15+
fetch-depth: 0
16+
17+
- name: Lint commits
18+
uses: wagoid/commitlint-github-action@v3
19+
20+
- name: Block fixup commits
21+
if: ${{ github.event_name != 'merge_group' }}
22+
uses: 13rac1/block-fixup-merge-action@v2.0.0
23+
24+
- name: Block Merge Commits
25+
if: ${{ github.event_name != 'merge_group' }}
26+
uses: Morishiri/block-merge-commits-action@v1.0.1
27+
with:
28+
repo-token: ${{ secrets.GITHUB_TOKEN }}

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[project]
22
name = "uipath-langchain"
3-
version = "0.0.88"
3+
version = "0.0.89"
44
description = "UiPath Langchain"
55
readme = { file = "README.md", content-type = "text/markdown" }
66
requires-python = ">=3.10"
77
dependencies = [
8-
"uipath>=2.0.4, <2.1.0",
8+
"uipath>=2.0.7, <2.1.0",
99
"langgraph>=0.2.70",
1010
"langchain-core>=0.3.34",
1111
"langgraph-checkpoint-sqlite>=2.0.3",

src/uipath_langchain/_cli/_runtime/_output.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -277,11 +277,11 @@ async def _save_resume_trigger(self) -> None:
277277
if isinstance(self.interrupt_value, CreateAction):
278278
action = uipath_sdk.actions.create(
279279
title=self.interrupt_value.title,
280-
app_name=self.interrupt_value.name
281-
if self.interrupt_value.name
280+
app_name=self.interrupt_value.app_name
281+
if self.interrupt_value.app_name
282282
else "",
283-
app_key=self.interrupt_value.key
284-
if self.interrupt_value.key
283+
app_key=self.interrupt_value.app_key
284+
if self.interrupt_value.app_key
285285
else "",
286286
app_version=self.interrupt_value.app_version
287287
if self.interrupt_value.app_version

0 commit comments

Comments
 (0)