Skip to content

Update faq.yml

Update faq.yml #4

name: reviewdog
on: [pull_request]
jobs:
yamllint:
name: runner / yamllint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: yamllint
uses: reviewdog/action-yamllint@v1
with:
github_token: ${{ secrets.github_token }}
reporter: github-pr-review # Change reporter.
yamllint_flags: 'lib/'
# Inline configuration including both line length and indentation rules
config_data: |
{
"extends": "relaxed",
"rules":
"indentation": {
"spaces": 2,
"indent-sequences": "consistent"
}
}
}