Skip to content

Commit ab3b369

Browse files
author
github-actions
authored
chore: sync files
Signed-off-by: GitHub <noreply@github.com>
1 parent a58468e commit ab3b369

6 files changed

+23
-6
lines changed

.github/dependabot.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ updates:
66
interval: daily
77
open-pull-requests-limit: 1
88
labels:
9-
- bot
10-
- github-actions
9+
- tag:bot
10+
- type:github-actions

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

+8
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,14 @@ jobs:
2424
- name: Check out repository
2525
uses: actions/checkout@v3
2626

27+
- name: Free disk space (Ubuntu)
28+
uses: jlumbroso/free-disk-space@v1.2.0
29+
with:
30+
tool-cache: false
31+
dotnet: false
32+
swap-storage: false
33+
large-packages: false
34+
2735
- name: Remove exec_depend
2836
uses: autowarefoundation/autoware-github-actions/remove-exec-depend@v1
2937

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

+3
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,11 @@ jobs:
99
steps:
1010
- name: Check out repository
1111
uses: actions/checkout@v3
12+
with:
13+
fetch-depth: 0
1214

1315
- name: Run pre-commit
1416
uses: autowarefoundation/autoware-github-actions/pre-commit@v1
1517
with:
1618
pre-commit-config: .pre-commit-config-optional.yaml
19+
base-branch: origin/${{ github.base_ref }}

.github/workflows/sync-files.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ jobs:
2828
with:
2929
token: ${{ steps.generate-token.outputs.token }}
3030
pr-labels: |
31-
bot
32-
sync-files
31+
tag:bot
32+
tag:sync-files
3333
auto-merge-method: squash

.pre-commit-config-optional.yaml

+2-2
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.3
3+
rev: v3.11.2
44
hooks:
55
- id: markdown-link-check
6-
args: [--config=.markdown-link-check.json]
6+
args: [--quiet, --config=.markdown-link-check.json]

.pre-commit-config.yaml

+6
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,12 @@ repos:
7878
args: [--quiet]
7979
exclude: .cu
8080

81+
- repo: https://github.com/python-jsonschema/check-jsonschema
82+
rev: 0.23.2
83+
hooks:
84+
- id: check-metaschema
85+
files: ^.+/schema/.*schema\.json$
86+
8187
- repo: local
8288
hooks:
8389
- id: prettier-svg

0 commit comments

Comments
 (0)