Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/wip-limit-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: WIP limit check

on:
pull_request:
types: [opened, ready_for_review]
types: [opened, reopened, ready_for_review]

jobs:
check:
Expand Down
4 changes: 2 additions & 2 deletions notebooks/traceblocTrainingGuide.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@
"metadata": {},
"outputs": [],
"source": [
"# Clone the tracebloc model zoo (skip if you already have it)\n",
"!git clone https://github.com/tracebloc/model-zoo.git ../model-zoo 2>/dev/null || echo \"model-zoo already cloned\""
"# Clone the tracebloc model zoo (skipped if it's already present)\n",
"![ -d ../model-zoo ] && echo \"model-zoo already present - skipping clone\" || git clone https://github.com/tracebloc/model-zoo.git ../model-zoo"
]
},
{
Expand Down
Loading