Skip to content

Commit 8837bd0

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 405d95d commit 8837bd0

11 files changed

+79
-10
lines changed

.github/dependabot.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
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+
15
version: 2
26
updates:
37
- package-ecosystem: github-actions
48
directory: /
9+
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#scheduleinterval
510
schedule:
6-
interval: daily
11+
interval: monthly
712
open-pull-requests-limit: 1
813
labels:
914
- tag:bot

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

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,22 @@
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+
15
name: pre-commit-optional
26

37
on:
48
pull_request:
59

10+
concurrency:
11+
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
12+
cancel-in-progress: true
13+
614
jobs:
715
pre-commit-optional:
8-
runs-on: ubuntu-latest
16+
runs-on: ubuntu-22.04
917
steps:
1018
- name: Check out repository
11-
uses: actions/checkout@v5
19+
uses: actions/checkout@v4
1220
with:
1321
fetch-depth: 0
1422

.github/workflows/pre-commit.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,14 @@ name: pre-commit
33
on:
44
pull_request:
55

6+
concurrency:
7+
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
8+
cancel-in-progress: true
9+
610
jobs:
711
pre-commit:
812
if: ${{ github.event.repository.private }} # Use pre-commit.ci for public repositories
9-
runs-on: ubuntu-latest
13+
runs-on: ubuntu-22.04
1014
steps:
1115
- name: Generate token
1216
id: generate-token
@@ -16,7 +20,7 @@ jobs:
1620
private_key: ${{ secrets.PRIVATE_KEY }}
1721

1822
- name: Check out repository
19-
uses: actions/checkout@v5
23+
uses: actions/checkout@v4
2024
with:
2125
ref: ${{ github.event.pull_request.head.ref }}
2226

.github/workflows/semantic-pull-request.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
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+
15
name: semantic-pull-request
26

37
on:
Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,27 @@
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+
15
name: spell-check-differential
26

37
on:
48
pull_request:
59

10+
concurrency:
11+
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
12+
cancel-in-progress: true
13+
614
jobs:
715
spell-check-differential:
8-
runs-on: ubuntu-latest
16+
runs-on: ubuntu-22.04
917
steps:
1018
- name: Check out repository
11-
uses: actions/checkout@v5
19+
uses: actions/checkout@v4
1220

1321
- name: Run spell-check
1422
uses: autowarefoundation/autoware-github-actions/spell-check@v1
1523
with:
16-
cspell-json-url: https://raw.githubusercontent.com/tier4/autoware-spell-check-dict/main/.cspell.json
24+
cspell-json-url: https://raw.githubusercontent.com/autowarefoundation/autoware-spell-check-dict/main/.cspell.json
25+
dict-packages: |
26+
https://github.com/autowarefoundation/autoware-spell-check-dict
27+
https://github.com/tier4/cspell-dicts

.github/workflows/sync-files.yaml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,18 @@
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+
15
name: sync-files
26

37
on:
48
schedule:
59
- cron: 0 0 * * *
610
workflow_dispatch:
711

12+
concurrency:
13+
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
14+
cancel-in-progress: true
15+
816
jobs:
917
check-secret:
1018
uses: autowarefoundation/autoware-github-actions/.github/workflows/check-secret.yaml@v1
@@ -14,7 +22,7 @@ jobs:
1422
sync-files:
1523
needs: check-secret
1624
if: ${{ needs.check-secret.outputs.set == 'true' }}
17-
runs-on: ubuntu-latest
25+
runs-on: ubuntu-22.04
1826
steps:
1927
- name: Generate token
2028
id: generate-token

.markdownlint.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
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+
15
# See https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md for all rules.
26
default: true
37
MD013: false
@@ -7,5 +11,7 @@ MD029:
711
style: ordered
812
MD033: false
913
MD041: false
14+
MD045: false
1015
MD046: false
1116
MD049: false
17+
MD059: false

.pre-commit-config-optional.yaml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
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
6+
ci:
7+
autofix_commit_msg: "style(pre-commit-optional): autofix"
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-optional): quarterly autoupdate"
11+
112
repos:
213
- repo: https://github.com/tcort/markdown-link-check
3-
rev: v3.12.1
14+
rev: v3.14.2
415
hooks:
516
- id: markdown-link-check
617
args: [--quiet, --config=.markdown-link-check.json]

.prettierignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
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+
15
*.param.yaml
26
*.rviz

.prettierrc.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
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+
15
printWidth: 100
26
tabWidth: 2
37
overrides:

0 commit comments

Comments
 (0)