DOCSP-32483 programmatic tagging script for ecosystem repo #6
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: vale-checks | |
on: | |
pull_request: | |
paths: | |
- "source/**" | |
jobs: | |
vale: | |
name: TDBX Vale rules | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@master | |
- id: files | |
uses: masesgroup/retrieve-changed-files@v2 | |
with: | |
format: 'csv' | |
- name: tdbx-vale | |
uses: errata-ai/vale-action@reviewdog | |
with: | |
reporter: github-pr-check | |
files: ${{steps.files.outputs.added_modified}} | |
fail_on_error: true | |
token: ${{secrets.GITHUB_TOKEN}} |