From ca84a3842696946a51e9dc840f5a03c5bb439310 Mon Sep 17 00:00:00 2001 From: Terry Howe Date: Fri, 13 Sep 2024 07:54:16 -0600 Subject: [PATCH] chore: add github action for vale Signed-off-by: Terry Howe --- .github/workflows/vale.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/vale.yaml diff --git a/.github/workflows/vale.yaml b/.github/workflows/vale.yaml new file mode 100644 index 00000000..968afed6 --- /dev/null +++ b/.github/workflows/vale.yaml @@ -0,0 +1,13 @@ + lint: + name: runner / vale + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: errata-ai/vale-action@reviewdog + with: + files: README.md + debug: true + fail_on_error: true + reporter: github-check + env: + GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}