docs: fix comment for backup_check_retries #52
Workflow file for this run
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: Validate YAML Files | |
on: | |
workflow_call: | |
push: | |
jobs: | |
linter: | |
name: Validate Files | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Lint Yaml Files | |
uses: ibiqlik/action-yamllint@v3 | |
with: | |
config_data: | | |
extends: default | |
rules: | |
line-length: | |
level: warning | |
max: 120 | |
brackets: | |
max-spaces-inside: 1 |