Skip to content

Commit 255647b

Browse files
github-actionsgithub-actions[bot]
authored andcommitted
chore: sync files
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 06a4426 commit 255647b

File tree

4 files changed

+20
-14
lines changed

4 files changed

+20
-14
lines changed

.github/workflows/github-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
run: |
6161
gh release ${{ steps.select-verb.outputs.verb }} "${{ steps.set-tag-name.outputs.tag-name }}" \
6262
--draft \
63-
--title "Release ${{ steps.set-tag-name.outputs.tag-name }}" \
63+
--title "${{ steps.set-tag-name.outputs.tag-name }}" \
6464
--notes "$NOTES"
6565
env:
6666
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.markdownlint.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@ MD041: false
1414
MD045: false
1515
MD046: false
1616
MD049: false
17+
MD059: false

.pre-commit-config.yaml

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ci:
1111

1212
repos:
1313
- repo: https://github.com/pre-commit/pre-commit-hooks
14-
rev: v5.0.0
14+
rev: v6.0.0
1515
hooks:
1616
- id: check-json
1717
- id: check-merge-conflict
@@ -26,7 +26,7 @@ repos:
2626
args: [--markdown-linebreak-ext=md]
2727

2828
- repo: https://github.com/igorshubovych/markdownlint-cli
29-
rev: v0.43.0
29+
rev: v0.46.0
3030
hooks:
3131
- id: markdownlint
3232
args: [-c, .markdownlint.yaml, --fix]
@@ -37,12 +37,12 @@ repos:
3737
- id: prettier
3838

3939
- repo: https://github.com/adrienverge/yamllint
40-
rev: v1.35.1
40+
rev: v1.37.1
4141
hooks:
4242
- id: yamllint
4343

4444
- repo: https://github.com/autowarefoundation/autoware-guideline-check
45-
rev: 0.1.0
45+
rev: 0.2.0
4646
hooks:
4747
- id: check-package-depends
4848

@@ -57,42 +57,43 @@ repos:
5757
- id: sort-package-xml
5858

5959
- repo: https://github.com/shellcheck-py/shellcheck-py
60-
rev: v0.10.0.1
60+
rev: v0.11.0.1
6161
hooks:
6262
- id: shellcheck
6363

6464
- repo: https://github.com/scop/pre-commit-shfmt
65-
rev: v3.10.0-2
65+
rev: v3.12.0-2
6666
hooks:
6767
- id: shfmt
6868
args: [-w, -s, -i=4]
6969

7070
- repo: https://github.com/pycqa/isort
71-
rev: 5.13.2
71+
rev: 7.0.0
7272
hooks:
7373
- id: isort
74+
args: [--profile=black, --line-length=100]
7475

7576
- repo: https://github.com/psf/black
76-
rev: 24.10.0
77+
rev: 25.11.0
7778
hooks:
7879
- id: black
7980
args: [--line-length=100]
8081

8182
- repo: https://github.com/pre-commit/mirrors-clang-format
82-
rev: v19.1.6
83+
rev: v21.1.6
8384
hooks:
8485
- id: clang-format
8586
types_or: [c++, c, cuda]
8687

8788
- repo: https://github.com/cpplint/cpplint
88-
rev: 2.0.0
89+
rev: 2.0.2
8990
hooks:
9091
- id: cpplint
9192
args: [--quiet]
9293
exclude: .cu
9394

9495
- repo: https://github.com/python-jsonschema/check-jsonschema
95-
rev: 0.30.0
96+
rev: 0.35.0
9697
hooks:
9798
- id: check-metaschema
9899
files: ^.+/schema/.*schema\.json$
@@ -108,7 +109,7 @@ repos:
108109
additional_dependencies: [[email protected], "@prettier/[email protected]"]
109110

110111
- repo: https://github.com/AleksaC/hadolint-py
111-
rev: v2.12.1b3
112+
rev: v2.14.0
112113
hooks:
113114
- id: hadolint
114115
exclude: .svg$

mkdocs.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,9 @@ plugins:
6363
module_name: mkdocs_macros
6464
- mkdocs-video
6565
- same-dir
66-
- search
66+
# https://squidfunk.github.io/mkdocs-material/plugins/search/#config.separator
67+
- search:
68+
separator: '[\s\-_,:!=\[\]()"/]+|(?!\b)(?=[A-Z][a-z])|\.(?!\d)|&[lg]t;'
6769

6870
markdown_extensions:
6971
- abbr
@@ -95,6 +97,8 @@ markdown_extensions:
9597
- name: mermaid
9698
class: mermaid
9799
format: !!python/name:pymdownx.superfences.fence_code_format
100+
- pymdownx.tasklist:
101+
custom_checkbox: true
98102
- toc:
99103
permalink: "#"
100104
toc_depth: 3

0 commit comments

Comments
 (0)