Skip to content

Commit 55682c5

Browse files
committedJun 4, 2022
chore: fixes for yamllint
1 parent 1cf54a1 commit 55682c5

File tree

7 files changed

+8
-5
lines changed

7 files changed

+8
-5
lines changed
 

‎.github/actions/check/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ runs:
1010
- name: Setup Build Tool
1111
uses: ./.github/actions/setup_build_tool
1212
with:
13-
bypass_env_vars: RUSTFLAGS,RUST_LOG,GITHUB_TOKEN
13+
bypass_env_vars: RUSTFLAGS,RUST_LOG,GITHUB_TOKEN
1414

1515
- name: Check License Header
1616
shell: bash

‎.github/actions/publish_image/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ runs:
4444
uses: docker/build-push-action@v3
4545
with:
4646
push: true
47-
tags: datafuselabs/databend:master # assume latest tag is the latest release tag
47+
tags: datafuselabs/databend:master # assume latest tag is the latest release tag
4848
platforms: ${{ inputs.platform }}
4949
context: .
5050
file: ./docker/Dockerfile

‎.github/actions/test_unit/action.yml

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ inputs:
44
codecov_token:
55
description: "CodeCov Token"
66
required: true
7+
78
runs:
89
using: "composite"
910
steps:

‎.github/codecov.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ coverage:
1616
status:
1717
project:
1818
default:
19-
enabled: yes
19+
enabled: true
2020
threshold: 1%
2121
patch:
2222
default:
23-
enabled: yes
23+
enabled: true
2424
threshold: 1%

‎.github/workflows/developing.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ jobs:
116116
- uses: ./.github/actions/test_stateless_standalone_linux
117117

118118
# https://github.com/datafuselabs/databend/issues/5287
119-
#test_stateless_standalone_macos:
119+
# test_stateless_standalone_macos:
120120
# runs-on: macos-11
121121
# needs: build_macos
122122
# steps:

‎.licenserc.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ header:
1212
- "tools"
1313
# Ignore hidden files
1414
- ".cargo"
15+
- ".databend"
1516
- ".devcontainer"
1617
- ".github"
1718
- ".dockerignore"

‎.yamllint.yml

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ extends: default
33
ignore: |
44
build/
55
target/
6+
.databend/
67
78
rules:
89
# 120 chars should be enough, but don't fail if a line is longer

0 commit comments

Comments
 (0)
Please sign in to comment.