Worker performance pg refactor #699
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@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| - 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" |