Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(cspell): merge spell-check-partial and spell-check-all #6596

Merged
merged 8 commits into from
Mar 13, 2024
9 changes: 0 additions & 9 deletions .cspell-partial.json

This file was deleted.

5 changes: 5 additions & 0 deletions .cspell.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"ignorePaths": ["perception/bytetrack/lib/**"],
"ignoreRegExpList": [],
"words": ["dltype", "tvmgen"]
}
19 changes: 0 additions & 19 deletions .github/workflows/spell-check-all.yaml

This file was deleted.

7 changes: 5 additions & 2 deletions .github/workflows/spell-check-partial.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,20 @@ name: spell-check-partial

on:
pull_request:
schedule:
- cron: 0 0 * * *
workflow_dispatch:

jobs:
spell-check-partial:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Run spell-check
uses: autowarefoundation/autoware-github-actions/spell-check@v1
with:
cspell-json-url: https://raw.githubusercontent.com/tier4/autoware-spell-check-dict/main/.cspell.json
local-cspell-json: .cspell-partial.json
local-cspell-json: .cspell.json
incremental-files-only: false
1 change: 1 addition & 0 deletions perception/bytetrack/src/bytetrack.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ bool ByteTrack::do_inference(ObjectArray & objects)
bytetrack_objects.emplace_back(bytetrack_obj);
}

// cspell: ignore stracks tlwh
// Update tracker
std::vector<STrack> output_stracks = tracker_->update(bytetrack_objects);

Expand Down
Loading