Skip to content

[Fix #12242] Support AllowModifiersOnAttrs option for Style/AccessModifierDeclarations #2510

[Fix #12242] Support AllowModifiersOnAttrs option for Style/AccessModifierDeclarations

[Fix #12242] Support AllowModifiersOnAttrs option for Style/AccessModifierDeclarations #2510

Workflow file for this run

name: Linting
on:
pull_request:
paths:
- '**/*.yaml'
- '**/*.yml'
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
yamllint:
permissions:
contents: read # for actions/checkout to fetch code
pull-requests: write # for karancode/yamllint-github-action to post comments on PRs
name: Yamllint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Yamllint
uses: karancode/yamllint-github-action@v2.1.1
with:
yamllint_strict: true
yamllint_format: parsable
yamllint_comment: true
env:
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}