File tree Expand file tree Collapse file tree 4 files changed +3
-3
lines changed
Expand file tree Collapse file tree 4 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
File renamed without changes.
Original file line number Diff line number Diff 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 :
You can’t perform that action at this time.
0 commit comments