Skip to content

Commit def9a60

Browse files
authored
Merge pull request #719 from tier4/sync-awf-latest
chore: sync awf-latest
2 parents 2732267 + acc7cff commit def9a60

File tree

10 files changed

+1420
-19
lines changed

10 files changed

+1420
-19
lines changed

.github/_CODEOWNERS

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,20 @@ autoware_launch/** [email protected] [email protected] yukihiro.saito@ti
55
# /**
66
# .github/**
77
8-
8+
99
1010
11-
autoware_launch/config/perception/** [email protected] [email protected] [email protected]
12-
11+
12+
1313
1414
autoware_launch/config/system/** [email protected] [email protected]
15-
15+
1616
autoware_launch/launch/components/tier4_autoware_api_component.launch.xml [email protected]
17-
17+
autoware_launch/launch/components/tier4_control_component.launch.xml [email protected] [email protected] [email protected] [email protected]
1818
1919
20-
autoware_launch/launch/components/tier4_perception_component.launch.xml [email protected] [email protected] [email protected]
21-
20+
autoware_launch/launch/components/tier4_perception_component.launch.xml [email protected] [email protected] [email protected] [email protected]
21+
autoware_launch/launch/components/tier4_planning_component.launch.xml [email protected] [email protected] [email protected] [email protected]
2222
autoware_launch/launch/components/tier4_sensing_component.launch.xml [email protected] [email protected] [email protected]
2323
autoware_launch/launch/components/tier4_simulator_component.launch.xml [email protected] [email protected] [email protected] [email protected]
2424
autoware_launch/launch/components/tier4_system_component.launch.xml [email protected] [email protected] [email protected] [email protected]

.github/dependabot.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@ version: 2
66
updates:
77
- package-ecosystem: github-actions
88
directory: /
9+
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#scheduleinterval
910
schedule:
10-
interval: daily
11+
interval: monthly
1112
open-pull-requests-limit: 1
1213
labels:
1314
- tag:bot

.github/sync-files.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
- source: .github/workflows/sync-files.yaml
2222
- source: .markdown-link-check.json
2323
- source: .markdownlint.yaml
24+
- source: .pre-commit-config.yaml
2425
- source: .pre-commit-config-optional.yaml
2526
- source: .prettierignore
2627
pre-commands: |

.github/workflows/build-and-test-differential.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
make-sure-label-is-present:
1717
uses: autowarefoundation/autoware-github-actions/.github/workflows/make-sure-label-is-present.yaml@v1
1818
with:
19-
label: tag:run-build-and-test-differential
19+
label: run:build-and-test-differential
2020

2121
build-and-test-differential:
2222
needs: make-sure-label-is-present

.github/workflows/pr-labeler.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
label:
1111
runs-on: ubuntu-22.04
1212
steps:
13-
- uses: actions/labeler@v4
13+
- uses: actions/labeler@v5
1414
with:
1515
repo-token: ${{ secrets.GITHUB_TOKEN }}
1616
configuration-path: .github/labeler.yaml

.github/workflows/update-sync-param-files.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
3131
- name: Create PR
3232
id: create-pr
33-
uses: peter-evans/create-pull-request@v6
33+
uses: peter-evans/create-pull-request@v7
3434
with:
3535
token: ${{ steps.generate-token.outputs.token }}
3636
base: ${{ github.event.repository.default_branch }}

.pre-commit-config-optional.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
repos:
66
- repo: https://github.com/tcort/markdown-link-check
7-
rev: v3.12.2
7+
rev: v3.13.6
88
hooks:
99
- id: markdown-link-check
1010
args: [--quiet, --config=.markdown-link-check.json]

.pre-commit-config.yaml

Lines changed: 47 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,32 @@
1+
# This file is automatically synced from:
2+
# https://github.com/autowarefoundation/sync-file-templates
3+
# To make changes, update the source repository and follow the guidelines in its README.
4+
5+
# https://pre-commit.ci/#configuration
16
ci:
27
autofix_commit_msg: "style(pre-commit): autofix"
3-
autoupdate_commit_msg: "ci(pre-commit): autoupdate"
8+
# we already have our own daily update mechanism, we set this to quarterly
9+
autoupdate_schedule: quarterly
10+
autoupdate_commit_msg: "ci(pre-commit): quarterly autoupdate"
411

512
repos:
613
- repo: https://github.com/pre-commit/pre-commit-hooks
7-
rev: v4.6.0
14+
rev: v5.0.0
815
hooks:
916
- id: check-json
1017
- id: check-merge-conflict
1118
- id: check-toml
1219
- id: check-xml
1320
- id: check-yaml
21+
args: [--unsafe]
1422
- id: detect-private-key
1523
- id: end-of-file-fixer
1624
- id: mixed-line-ending
1725
- id: trailing-whitespace
1826
args: [--markdown-linebreak-ext=md]
1927

2028
- repo: https://github.com/igorshubovych/markdownlint-cli
21-
rev: v0.41.0
29+
rev: v0.43.0
2230
hooks:
2331
- id: markdownlint
2432
args: [-c, .markdownlint.yaml, --fix]
@@ -49,7 +57,7 @@ repos:
4957
- id: shellcheck
5058

5159
- repo: https://github.com/scop/pre-commit-shfmt
52-
rev: v3.8.0-1
60+
rev: v3.10.0-2
5361
hooks:
5462
- id: shfmt
5563
args: [-w, -s, -i=4]
@@ -60,9 +68,42 @@ repos:
6068
- id: isort
6169

6270
- repo: https://github.com/psf/black
63-
rev: 24.4.2
71+
rev: 24.10.0
6472
hooks:
6573
- id: black
6674
args: [--line-length=100]
6775

68-
exclude: .svg
76+
- repo: https://github.com/pre-commit/mirrors-clang-format
77+
rev: v19.1.4
78+
hooks:
79+
- id: clang-format
80+
types_or: [c++, c, cuda]
81+
82+
- repo: https://github.com/cpplint/cpplint
83+
rev: 2.0.0
84+
hooks:
85+
- id: cpplint
86+
args: [--quiet]
87+
exclude: .cu
88+
89+
- repo: https://github.com/python-jsonschema/check-jsonschema
90+
rev: 0.30.0
91+
hooks:
92+
- id: check-metaschema
93+
files: ^.+/schema/.*schema\.json$
94+
95+
- repo: local
96+
hooks:
97+
- id: prettier-svg
98+
name: prettier svg
99+
description: Apply Prettier with plugin-xml to svg.
100+
entry: prettier --write --list-different --ignore-unknown --print-width 200 --xml-self-closing-space false --xml-whitespace-sensitivity ignore
101+
language: node
102+
files: .svg$
103+
additional_dependencies: [[email protected], "@prettier/[email protected]"]
104+
105+
- repo: https://github.com/AleksaC/hadolint-py
106+
rev: v2.12.1b3
107+
hooks:
108+
- id: hadolint
109+
exclude: .svg$

autoware_launch/autoware_launch.drawio.svg

Lines changed: 1357 additions & 1 deletion
Loading

autoware_launch/config/perception/object_recognition/detection/detected_object_validation/obstacle_pointcloud_based_validator.param.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,7 @@
1212
#UNKNOWN, CAR, TRUCK, BUS, TRAILER, MOTORBIKE, BICYCLE, PEDESTRIAN
1313
[800.0, 800.0, 800.0, 800.0, 800.0, 800.0, 800.0, 800.0]
1414

15+
validate_max_distance_m: 70.0 # [m]
16+
1517
using_2d_validator: true
1618
enable_debugger: false

0 commit comments

Comments
 (0)