Skip to content

Commit 94b6349

Browse files
committed
fix some issues reported by yamllint
1 parent 007a06c commit 94b6349

File tree

5 files changed

+18
-13
lines changed

5 files changed

+18
-13
lines changed

.github/workflows/build_ci_multi.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
name: build_ci_multi_images
2-
on:
2+
3+
'on':
34
pull_request:
4-
types: [ opened, synchronize, reopened, labeled, unlabeled ]
5+
types: [opened, synchronize, reopened, labeled, unlabeled]
56
branches:
67
- main
78

@@ -21,7 +22,7 @@ jobs:
2122
strategy:
2223
fail-fast: false
2324
matrix:
24-
install_latest: [ true ]
25+
install_latest: [true]
2526
steps:
2627
- name: "login docker hub"
2728
env:

.github/workflows/build_latest_release_multi.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
name: build_latest_release_multi_images
2-
on:
2+
3+
'on':
34
push:
45
tags:
56
- '*'
@@ -20,7 +21,7 @@ jobs:
2021
strategy:
2122
fail-fast: false
2223
matrix:
23-
install_latest: [ true ]
24+
install_latest: [true]
2425
steps:
2526
- name: Checkout repository
2627
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0

.github/workflows/build_master.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
name: build_master_images
2-
on:
2+
3+
'on':
34
schedule:
45
- cron: '30 2 * * * '
56
push:
67
branches:
7-
- main
8+
- main
89

910
permissions: {}
1011

@@ -22,7 +23,7 @@ jobs:
2223
strategy:
2324
fail-fast: false
2425
matrix:
25-
install_latest: [ true ]
26+
install_latest: [true]
2627
steps:
2728
- name: Checkout repository
2829
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0

.github/workflows/build_master_dev.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
name: build_dev_master_images
2-
on:
2+
3+
'on':
34
schedule:
45
# Runs every day
56
- cron: '30 2 * * * '
67
push:
78
branches:
8-
- main
9+
- main
910

1011
permissions: {}
1112

@@ -23,7 +24,7 @@ jobs:
2324
strategy:
2425
fail-fast: false
2526
matrix:
26-
install_latest: [ true ]
27+
install_latest: [true]
2728
steps:
2829
- name: Checkout repository
2930
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0

.github/workflows/build_master_multi.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
name: build_master_multi_images
2-
on:
2+
3+
'on':
34
schedule:
45
- cron: '30 2 * * * '
56
push:
@@ -22,7 +23,7 @@ jobs:
2223
strategy:
2324
fail-fast: false
2425
matrix:
25-
install_latest: [ true ]
26+
install_latest: [true]
2627
steps:
2728
- name: Checkout repository
2829
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0

0 commit comments

Comments
 (0)