Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
a0c6543
added files
divyasinghds Apr 17, 2025
33cc46c
improvements
divyasinghds Apr 22, 2025
4b53088
improvements
divyasinghds Apr 22, 2025
5f9fddc
license updated
divyasinghds Apr 22, 2025
18af0b1
license updated
divyasinghds Apr 22, 2025
a1910c6
Update LICENSE
divyasinghds Apr 22, 2025
6ea863b
chore: add auto-add to engineer kanban workflow (#5)
LukasWodka Apr 25, 2026
310f938
ci: add WIP-limit-check caller workflow (#10)
LukasWodka May 7, 2026
329e8cf
chore: add PR template + customer bump + stale auto-close (#6)
LukasWodka May 7, 2026
942cc79
ci: add kanban closure-routing caller workflow (#9)
LukasWodka May 7, 2026
b593ad3
chore: sync develop with main and tidy Python conventions (#14)
saadqbal May 15, 2026
73f775f
chore: merge main into develop to resolve PR #15 conflicts (#16)
saadqbal May 19, 2026
5cecb0c
ci: add fr-gate caller workflow (#23)
LukasWodka Jul 7, 2026
1da324a
Merge pull request #20 from tracebloc/ci/public-pii-gate-caller
LukasWodka Jul 8, 2026
29ada1f
fix: surface model-zoo clone failures and trigger WIP check on reopen…
shujaatTracebloc Jul 10, 2026
8ba0df4
chore: merge main into develop to resolve PR #21 conflicts (#24)
divyasinghds Jul 22, 2026
85d806c
chore: merge main into develop to resolve PR #21 conflicts
divyasinghds Jul 22, 2026
3f571f7
chore(notebook): bump tracebloc pin to >=0.14.0 in training guide
divyasinghds Jul 22, 2026
a6e1e6d
Merge pull request #25 from tracebloc/chore/merge-main-into-develop-p…
divyasinghds Jul 22, 2026
4ec3ecb
Merge pull request #26 from tracebloc/chore/bump-notebook-tracebloc-0…
divyasinghds Jul 22, 2026
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
15 changes: 15 additions & 0 deletions .github/workflows/fr-gate-caller.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: FR gate

# Per-repo caller. Blocks merges to staging/main/master unless every contained
# kanban item is in "Ready for staging" or "Ready for prod" respectively.
# All logic lives in tracebloc/.github/.github/workflows/fr-gate.yml.

on:
pull_request:
branches: [staging, main, master]
types: [opened, reopened, synchronize, ready_for_review, labeled, unlabeled]

jobs:
gate:
uses: tracebloc/.github/.github/workflows/fr-gate.yml@main
secrets: inherit
14 changes: 14 additions & 0 deletions .github/workflows/public-pii-gate-caller.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Public PII gate

# Per-repo caller for the public-repo PII gate. Blocks PRs whose title/body/
# commits contain a denylisted customer/partner name or known secret.
# Logic lives in tracebloc/.github/.github/workflows/public-pii-gate.yml.

on:
pull_request:
types: [opened, edited, reopened, synchronize, labeled, unlabeled]

jobs:
pii-gate:
uses: tracebloc/.github/.github/workflows/public-pii-gate.yml@main
secrets: inherit
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
6 changes: 3 additions & 3 deletions notebooks/traceblocTrainingGuide.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"execution_count": null,
"metadata": {},
"outputs": [],
"source": "# Install the tracebloc package \u2014 the [pytorch] extra covers the most common setup.\n# Using TensorFlow? Replace [pytorch] with [tensorflow]. See the README for all extras.\n!pip install \"tracebloc[pytorch]>=0.8.1\" -q"
"source": "# Install the tracebloc package \u2014 the [pytorch] extra covers the most common setup.\n# Using TensorFlow? Replace [pytorch] with [tensorflow]. See the README for all extras.\n!pip install \"tracebloc[pytorch]>=0.14.0\" -q"
},
{
"cell_type": "code",
Expand Down 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