This repository has been archived by the owner on Jan 29, 2024. It is now read-only.
platform: sync with ux (service settings page) for networking, security, monitoring, lags sections #6921
Workflow file for this run
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: Linting | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- "**" | |
pull_request: | |
jobs: | |
prose: | |
runs-on: ubuntu-latest | |
continue-on-error: false | |
steps: | |
- name: Checkout | |
uses: actions/checkout@master | |
- name: Vale | |
# 2020-08-12 The default branch of vale-action is `reviewdog`, which | |
# defaults to using the latest version of `vale` | |
# If we want a specific version, use `version:` in the `with` clause below | |
uses: errata-ai/vale-action@reviewdog | |
with: | |
files: '["index.rst", "docs"]' | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |