Correct the format of Regional Endpoints in the list of Regions #268
Workflow file for this run
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: Vale CI | |
| on: | |
| pull_request: | |
| paths: | |
| - "docs/**" | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| vale: | |
| name: Lint prose | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: vale-cli/vale-action@2.1.2 | |
| with: | |
| reporter: github-pr-review | |
| level: info | |
| filter_mode: diff_context | |
| fail_on_error: false | |
| # Scope linting to docs only; do not put the path in vale_flags — | |
| # the action runs `vale ${vale_flags} sync`, so a path there breaks sync. | |
| files: docs | |
| vale_flags: "--config=.vale-ci.ini" |