Skip to content

Commit 680953d

Browse files
authored
chore(cspell): merge spell-check-partial and spell-check-all (#6596)
* chore(ci): expand the scope of spell-check-partial Signed-off-by: Kotaro Yoshimoto <pythagora.yoshimoto@gmail.com> * chore(cspell): clean up .cspell-partial.json Signed-off-by: Kotaro Yoshimoto <pythagora.yoshimoto@gmail.com> * chore(cspell): ignore words from bytetrack Signed-off-by: Kotaro Yoshimoto <pythagora.yoshimoto@gmail.com> * chore(cspell): rename spell-check-partial to spell-check Signed-off-by: Kotaro Yoshimoto <pythagora.yoshimoto@gmail.com> * chore(cspell): delete spell-check-all Signed-off-by: Kotaro Yoshimoto <pythagora.yoshimoto@gmail.com> * chore(cspell): leave spell-check-partial name for CI required settings Signed-off-by: Kotaro Yoshimoto <pythagora.yoshimoto@gmail.com> * chore(cspell): restore job name in spell-check-partial.yaml Signed-off-by: Kotaro Yoshimoto <pythagora.yoshimoto@gmail.com> * chore(cspell): add workflow dispatch trigger to spell-check-partial Signed-off-by: Kotaro Yoshimoto <pythagora.yoshimoto@gmail.com> --------- Signed-off-by: Kotaro Yoshimoto <pythagora.yoshimoto@gmail.com>
1 parent fcebec6 commit 680953d

File tree

5 files changed

+11
-30
lines changed

5 files changed

+11
-30
lines changed

.cspell-partial.json

-9
This file was deleted.

.cspell.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"ignorePaths": ["perception/bytetrack/lib/**"],
3+
"ignoreRegExpList": [],
4+
"words": ["dltype", "tvmgen"]
5+
}

.github/workflows/spell-check-all.yaml

-19
This file was deleted.

.github/workflows/spell-check-partial.yaml

+5-2
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,20 @@ name: spell-check-partial
22

33
on:
44
pull_request:
5+
schedule:
6+
- cron: 0 0 * * *
7+
workflow_dispatch:
58

69
jobs:
710
spell-check-partial:
811
runs-on: ubuntu-latest
912
steps:
1013
- name: Check out repository
11-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1215

1316
- name: Run spell-check
1417
uses: autowarefoundation/autoware-github-actions/spell-check@v1
1518
with:
1619
cspell-json-url: https://raw.githubusercontent.com/tier4/autoware-spell-check-dict/main/.cspell.json
17-
local-cspell-json: .cspell-partial.json
20+
local-cspell-json: .cspell.json
1821
incremental-files-only: false

perception/bytetrack/src/bytetrack.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ bool ByteTrack::do_inference(ObjectArray & objects)
3838
bytetrack_objects.emplace_back(bytetrack_obj);
3939
}
4040

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

0 commit comments

Comments
 (0)