Skip to content

Commit 25a7521

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 34f89d0 commit 25a7521

10 files changed

Lines changed: 57 additions & 29 deletions

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

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,19 @@ on:
1212
- reopened
1313
- labeled
1414

15+
concurrency:
16+
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
17+
cancel-in-progress: true
18+
1519
jobs:
16-
make-sure-label-is-present:
17-
uses: autowarefoundation/autoware-github-actions/.github/workflows/make-sure-label-is-present.yaml@v1
20+
require-label:
21+
uses: autowarefoundation/autoware-github-actions/.github/workflows/require-label.yaml@v1
1822
with:
1923
label: run:build-and-test-differential
2024

2125
build-and-test-differential:
22-
needs: make-sure-label-is-present
23-
if: ${{ needs.make-sure-label-is-present.outputs.result == 'true' }}
26+
needs: require-label
27+
if: ${{ needs.require-label.outputs.result == 'true' }}
2428
runs-on: ubuntu-22.04
2529
container: ${{ matrix.container }}
2630
strategy:

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ on:
1010
- cron: 0 0 * * *
1111
workflow_dispatch:
1212

13+
concurrency:
14+
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
15+
cancel-in-progress: true
16+
1317
jobs:
1418
build-and-test:
1519
if: ${{ github.event_name != 'push' || github.ref_name == github.event.repository.default_branch }}

.github/workflows/github-release.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ on:
1515
type: string
1616
required: true
1717

18+
concurrency:
19+
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
20+
cancel-in-progress: true
21+
1822
jobs:
1923
github-release:
2024
runs-on: ubuntu-22.04
@@ -60,7 +64,7 @@ jobs:
6064
run: |
6165
gh release ${{ steps.select-verb.outputs.verb }} "${{ steps.set-tag-name.outputs.tag-name }}" \
6266
--draft \
63-
--title "Release ${{ steps.set-tag-name.outputs.tag-name }}" \
67+
--title "${{ steps.set-tag-name.outputs.tag-name }}" \
6468
--notes "$NOTES"
6569
env:
6670
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/pre-commit-optional.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ name: pre-commit-optional
77
on:
88
pull_request:
99

10+
concurrency:
11+
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
12+
cancel-in-progress: true
13+
1014
jobs:
1115
pre-commit-optional:
1216
runs-on: ubuntu-22.04

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ name: spell-check-differential
77
on:
88
pull_request:
99

10+
concurrency:
11+
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
12+
cancel-in-progress: true
13+
1014
jobs:
1115
spell-check-differential:
1216
runs-on: ubuntu-22.04

.github/workflows/sync-files.yaml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,12 @@ on:
99
- cron: 0 0 * * *
1010
workflow_dispatch:
1111

12-
jobs:
13-
check-secret:
14-
uses: autowarefoundation/autoware-github-actions/.github/workflows/check-secret.yaml@v1
15-
secrets:
16-
secret: ${{ secrets.APP_ID }}
12+
concurrency:
13+
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
14+
cancel-in-progress: true
1715

16+
jobs:
1817
sync-files:
19-
needs: check-secret
20-
if: ${{ needs.check-secret.outputs.set == 'true' }}
2118
runs-on: ubuntu-22.04
2219
steps:
2320
- name: Generate token

.github/workflows/update-codeowners-from-packages.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ on:
99
- cron: 0 0 * * *
1010
workflow_dispatch:
1111

12+
concurrency:
13+
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
14+
cancel-in-progress: true
15+
1216
jobs:
1317
check-secret:
1418
uses: autowarefoundation/autoware-github-actions/.github/workflows/check-secret.yaml@v1

.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-optional.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,12 @@
55
# https://pre-commit.ci/#configuration
66
ci:
77
autofix_commit_msg: "style(pre-commit-optional): autofix"
8-
# we already have our own daily update mechanism, we set this to quarterly
98
autoupdate_schedule: quarterly
109
autoupdate_commit_msg: "ci(pre-commit-optional): quarterly autoupdate"
1110

1211
repos:
1312
- repo: https://github.com/tcort/markdown-link-check
14-
rev: v3.12.2
13+
rev: v3.14.2
1514
hooks:
1615
- id: markdown-link-check
1716
args: [--quiet, --config=.markdown-link-check.json]

.pre-commit-config.yaml

Lines changed: 22 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,12 @@
55
# https://pre-commit.ci/#configuration
66
ci:
77
autofix_commit_msg: "style(pre-commit): autofix"
8-
# we already have our own daily update mechanism, we set this to quarterly
98
autoupdate_schedule: quarterly
109
autoupdate_commit_msg: "ci(pre-commit): quarterly autoupdate"
1110

1211
repos:
1312
- repo: https://github.com/pre-commit/pre-commit-hooks
14-
rev: v5.0.0
13+
rev: v6.0.0
1514
hooks:
1615
- id: check-json
1716
- id: check-merge-conflict
@@ -26,7 +25,7 @@ repos:
2625
args: [--markdown-linebreak-ext=md]
2726

2827
- repo: https://github.com/igorshubovych/markdownlint-cli
29-
rev: v0.44.0
28+
rev: v0.47.0
3029
hooks:
3130
- id: markdownlint
3231
args: [-c, .markdownlint.yaml, --fix]
@@ -35,19 +34,20 @@ repos:
3534
rev: v4.0.0-alpha.8
3635
hooks:
3736
- id: prettier
37+
args: [--no-error-on-unmatched-pattern]
3838

3939
- repo: https://github.com/adrienverge/yamllint
40-
rev: v1.37.0
40+
rev: v1.38.0
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

4949
- repo: https://github.com/tier4/pre-commit-hooks-ros
50-
rev: v0.10.0
50+
rev: v0.10.2
5151
hooks:
5252
- id: flake8-ros
5353
- id: prettier-xacro
@@ -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.11.0-1
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: 6.0.1
71+
rev: 7.0.0
7272
hooks:
7373
- id: isort
74+
args: [--profile=black, --line-length=100]
7475

75-
- repo: https://github.com/psf/black
76-
rev: 25.1.0
76+
- repo: https://github.com/psf/black-pre-commit-mirror
77+
rev: 26.1.0
7778
hooks:
7879
- id: black
7980
args: [--line-length=100]
8081

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

8788
- repo: https://github.com/cpplint/cpplint
88-
rev: 2.0.1
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.32.1
96+
rev: 0.36.2
9697
hooks:
9798
- id: check-metaschema
9899
files: ^.+/schema/.*schema\.json$
@@ -107,8 +108,14 @@ repos:
107108
files: .svg$
108109
additional_dependencies: [prettier@2.7.1, "@prettier/plugin-xml@2.2.0"]
109110

111+
- repo: https://github.com/autowarefoundation/autoware_system_designer
112+
rev: v0.3.1
113+
hooks:
114+
- id: lint-system-design-format
115+
args: [--format=github-actions]
116+
110117
- repo: https://github.com/AleksaC/hadolint-py
111-
rev: v2.12.1b3
118+
rev: v2.14.0
112119
hooks:
113120
- id: hadolint
114121
exclude: .svg$

0 commit comments

Comments
 (0)