Skip to content

Commit af1f4ed

Browse files
Added langgraph-store-mongodb to dependabot and _release actions. (#132)
1 parent d48e9e4 commit af1f4ed

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/dependabot.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,7 @@ updates:
1818
directory: "libs/langgraph-checkpoint-mongodb"
1919
schedule:
2020
interval: "weekly"
21+
- package-ecosystem: "pip"
22+
directory: "libs/langgraph-store-mongodb"
23+
schedule:
24+
interval: "weekly"

.github/workflows/_release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ on:
1515
options:
1616
- libs/langchain-mongodb
1717
- libs/langgraph-checkpoint-mongodb
18+
- libs/langgraph-store-mongodb
1819
default: libs/langchain-mongodb
1920
description: "From which folder this pipeline executes"
2021

@@ -140,8 +141,8 @@ jobs:
140141
141142
# For langchain-mongodb, replace dashes in the package name with underscores.
142143
IMPORT_NAME="${PKG_NAME//-/_}"
143-
# If "langgraph-checkpoint-mongodb", it's a namespace package => /-/.
144-
[[ "$PKG_NAME" == "langgraph-checkpoint-mongodb" ]] && IMPORT_NAME="${PKG_NAME//-/.}"
144+
# If langgraph*, it's a namespace package => /-/.
145+
[[ "$PKG_NAME" == langgraph* ]] && IMPORT_NAME="${PKG_NAME//-/.}"
145146
146147
uv run python -c "import $IMPORT_NAME; print(dir($IMPORT_NAME))"
147148

0 commit comments

Comments
 (0)