Merge pull request #1777 from codatio/java-sdk-deprecation #135
This file contains hidden or 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: Check - Vale | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'docs/**' | |
| - 'blog/**' | |
| - '.vale.ini' | |
| - '.vale/**' | |
| pull_request: | |
| paths: | |
| - 'docs/**' | |
| - 'blog/**' | |
| - '.vale.ini' | |
| - '.vale/**' | |
| jobs: | |
| vale: | |
| name: Vale linting | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Vale Linter | |
| uses: errata-ai/vale-action@reviewdog | |
| with: | |
| files: docs | |
| reporter: github-pr-review | |
| fail_on_error: false | |
| vale_flags: "--config=.vale.ini" | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |