Skip to content

Commit 3772348

Browse files
committed
fix: check
1 parent 87db466 commit 3772348

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

.github/workflows/agentkit-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@ jobs:
4040
HEAD_SHA: ${{ github.event.pull_request.head.sha }}
4141
AGENTKIT_COMMAND: build
4242
run: |
43-
python -m samples_check.check_usecases
43+
python -m workflow_utils.check_usecases

.github/workflows/agentkit-check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ jobs:
3636
BASE_SHA: ${{ github.event.pull_request.base.sha }}
3737
HEAD_SHA: ${{ github.event.pull_request.head.sha }}
3838
run: |
39-
python -m samples_check.check_usecases
39+
python -m workflow_utils.check_usecases
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def main() -> None:
3333
candidate_dirs: set[Path] = set()
3434
for rel_path in changed_use_cases:
3535
parts = Path(rel_path).parts
36-
if len(parts) >= 2 and parts[0] == "02-use-cases":
36+
if len(parts) >= 2 and parts[0] == "02-use-cases" and parts[1] != "beginner":
3737
candidate_dirs.add(Path(parts[0]) / parts[1])
3838

3939
if not candidate_dirs:

0 commit comments

Comments
 (0)