Skip to content

Commit 28a0442

Browse files
authored
chore: sync files
Signed-off-by: GitHub <[email protected]>
1 parent 0c1c706 commit 28a0442

6 files changed

+15
-10
lines changed

.github/workflows/deploy-docs.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
push:
55
branches:
66
- main
7+
- galactic
78
paths:
89
- mkdocs.yaml
910
- "**/*.md"
@@ -21,7 +22,7 @@ jobs:
2122
prevent-no-label-execution:
2223
uses: autowarefoundation/autoware-github-actions/.github/workflows/prevent-no-label-execution.yaml@v1
2324
with:
24-
label: documentation
25+
label: deploy-docs
2526

2627
deploy-docs:
2728
needs: prevent-no-label-execution

.github/workflows/pre-commit.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55

66
jobs:
77
pre-commit:
8-
if: ${{ github.event.repository.private }}
8+
if: ${{ github.event.repository.private }} # Use pre-commit.ci for public repositories
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Generate token

.markdownlint.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ default: true
33
MD013: false
44
MD024:
55
siblings_only: true
6+
MD029:
7+
style: ordered
68
MD033: false
79
MD041: false
810
MD046: false

.pre-commit-config-optional.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/tcort/markdown-link-check
3-
rev: v3.10.0
3+
rev: v3.11.0
44
hooks:
55
- id: markdown-link-check
66
args: [--config=.markdown-link-check.json]

.pre-commit-config.yaml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
ci:
2-
autofix_commit_msg: "ci(pre-commit): autofix"
2+
autofix_commit_msg: "style(pre-commit): autofix"
33
autoupdate_commit_msg: "ci(pre-commit): autoupdate"
44

55
repos:
66
- repo: https://github.com/pre-commit/pre-commit-hooks
7-
rev: v4.3.0
7+
rev: v4.4.0
88
hooks:
99
- id: check-json
1010
- id: check-merge-conflict
@@ -19,29 +19,29 @@ repos:
1919
args: [--markdown-linebreak-ext=md]
2020

2121
- repo: https://github.com/igorshubovych/markdownlint-cli
22-
rev: v0.32.1
22+
rev: v0.32.2
2323
hooks:
2424
- id: markdownlint
2525
args: [-c, .markdownlint.yaml, --fix]
2626

2727
- repo: https://github.com/pre-commit/mirrors-prettier
28-
rev: v2.7.1
28+
rev: v3.0.0-alpha.4
2929
hooks:
3030
- id: prettier
3131

3232
- repo: https://github.com/adrienverge/yamllint
33-
rev: v1.27.1
33+
rev: v1.28.0
3434
hooks:
3535
- id: yamllint
3636
exclude: .*.param.yaml
3737

3838
- repo: https://github.com/shellcheck-py/shellcheck-py
39-
rev: v0.8.0.4
39+
rev: v0.9.0.2
4040
hooks:
4141
- id: shellcheck
4242

4343
- repo: https://github.com/scop/pre-commit-shfmt
44-
rev: v3.5.1-1
44+
rev: v3.6.0-1
4545
hooks:
4646
- id: shfmt
4747
args: [-w, -s, -i=4]

mkdocs.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ theme:
1515
- navigation.tabs
1616
- navigation.tabs.sticky
1717
- navigation.top
18+
- navigation.footer
1819
favicon: assets/images/autoware-foundation.png
1920
icon:
2021
logo: fontawesome/solid/car
@@ -53,6 +54,7 @@ plugins:
5354
- ^(?!(.*/)?assets/).*\.(?!(.*\.)?md|(.*\.)?svg|(.*\.)?png|(.*\.)?jpg).*$
5455
- ^(.*/)?[^.]*$
5556
- macros
57+
- mkdocs-video
5658
- same-dir
5759
- search
5860

0 commit comments

Comments
 (0)