Update the integration page to reflect new integration catalog features #8854
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: 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: | |
fail_on_error: false | |
reporter: github-pr-check | |
filter_mode: added | |
vale_flags: "--no-exit" | |
version: 2.28.0 | |
continue-on-error: true |