Potential fix for UUID-keyed objects not being deleted. (#7605) #6188
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Yaml Lint | |
on: [push] # yamllint disable-line rule:truthy | |
jobs: | |
lintAllTheThings: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: yaml-lint | |
uses: ibiqlik/action-yamllint@v3 | |
with: | |
no_warnings: true | |
config_data: | | |
extends: default | |
rules: | |
colons: | |
max-spaces-before: -1 | |
max-spaces-after: -1 | |
new-lines: | |
level: warning | |
commas: | |
max-spaces-before: -1 | |
min-spaces-after: -1 | |
max-spaces-after: -1 | |
new-line-at-end-of-file: | |
level: warning | |
trailing-spaces: | |
level: warning | |
document-start: | |
present: false | |
line-length: | |
max: 800 | |
comments: | |
require-starting-space: false | |
ignore-shebangs: true | |
min-spaces-from-content: 2 |