File tree Expand file tree Collapse file tree
src/uipath_langchain/_cli/_runtime Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77
88jobs :
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 }}
Original file line number Diff line number Diff line change 11[project ]
22name = " uipath-langchain"
3- version = " 0.0.88 "
3+ version = " 0.0.89 "
44description = " UiPath Langchain"
55readme = { file = " README.md" , content-type = " text/markdown" }
66requires-python = " >=3.10"
77dependencies = [
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" ,
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments