Add default yamllint configuration

This commit is contained in:
Pavel Popov 2022-02-22 13:53:52 +03:00
parent 4b37e71e89
commit 9128e30de0
No known key found for this signature in database
GPG Key ID: 69085A83DD6EC92F
3 changed files with 30 additions and 0 deletions

11
.github/workflows/auto-tag.yml vendored Normal file
View File

@ -0,0 +1,11 @@
name: Auto-create new tags
on:
push:
branches:
- master
- main
jobs:
tag-action:
uses: valitydev/base-workflows/.github/workflows/auto-tag.yml@v1

15
.github/workflows/basic-linters.yml vendored Normal file
View File

@ -0,0 +1,15 @@
name: Vality basic linters
on:
pull_request:
branches:
- master
- main
push:
branches:
- master
- main
jobs:
lint:
uses: valitydev/base-workflows/.github/workflows/basic-linters.yml@v1

4
linters/.yamllint Normal file
View File

@ -0,0 +1,4 @@
extends: default
rules:
line-length:
max: 120