Skip to content

Commit c9cb76d

Browse files
chore: sync files (#35)
Signed-off-by: GitHub <[email protected]> Signed-off-by: GitHub <[email protected]> Co-authored-by: kenji-miyake <[email protected]>
1 parent 7ef9056 commit c9cb76d

6 files changed

+17
-9
lines changed

.github/PULL_REQUEST_TEMPLATE/standard-change.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
## Related links
66

7-
<!-- Write the links related to this PR. -->
7+
<!-- Write the links related to this PR. Private links should be clearly marked as private, for example, '[FOO COMPANY INTERNAL LINK](https://example.com)'. -->
88

99
## Tests performed
1010

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

+10-4
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,8 @@ jobs:
1111
fail-fast: false
1212
matrix:
1313
rosdistro:
14-
- galactic
1514
- humble
1615
include:
17-
- rosdistro: galactic
18-
container: ros:galactic
1916
- rosdistro: humble
2017
container: ros:humble
2118
steps:
@@ -72,10 +69,19 @@ jobs:
7269
id: get-modified-packages
7370
uses: autowarefoundation/autoware-github-actions/get-modified-packages@v1
7471

72+
- name: Get modified files
73+
id: get-modified-files
74+
uses: tj-actions/changed-files@v34
75+
with:
76+
files: |
77+
**/*.cpp
78+
**/*.hpp
79+
7580
- name: Run clang-tidy
76-
if: ${{ steps.get-modified-packages.outputs.modified-packages != '' }}
81+
if: ${{ steps.get-modified-files.outputs.all_changed_files != '' }}
7782
uses: autowarefoundation/autoware-github-actions/clang-tidy@v1
7883
with:
7984
rosdistro: humble
8085
target-packages: ${{ steps.get-modified-packages.outputs.modified-packages }}
86+
target-files: ${{ steps.get-modified-files.outputs.all_changed_files }}
8187
clang-tidy-config-url: https://raw.githubusercontent.com/autowarefoundation/autoware/main/.clang-tidy

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

-3
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,8 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
rosdistro:
18-
- galactic
1918
- humble
2019
include:
21-
- rosdistro: galactic
22-
container: ros:galactic
2320
- rosdistro: humble
2421
container: ros:humble
2522
steps:

.markdown-link-check.json

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
{
55
"pattern": "^http://localhost"
66
},
7+
{
8+
"pattern": "^http://127\\.0\\.0\\.1"
9+
},
710
{
811
"pattern": "^https://github.com/.*/discussions/new"
912
}

.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.10.3
44
hooks:
55
- id: markdown-link-check
66
args: [--config=.markdown-link-check.json]

0 commit comments

Comments
 (0)