SHI GmbH Solution Provider, SIEM Blog #4061
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: Style check | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
style-job: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out | |
uses: actions/checkout@v3 | |
- name: Run Vale | |
uses: errata-ai/vale-action@reviewdog | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
with: | |
files: '["_posts", "_community_members"]' | |
fail_on_error: false | |
reporter: github-pr-check | |
filter_mode: added | |
vale_flags: "--no-exit" | |
version: 2.28.0 | |
continue-on-error: true |