From e6aee4f80f5981a597966c9963dd82a5641737f3 Mon Sep 17 00:00:00 2001 From: Sebastian Spier Date: Wed, 29 Jan 2025 22:39:16 +0100 Subject: [PATCH 1/2] Moving the custom vocabulatory to the new location requires since v3.0 of vale --- .github/vale/{Vocab => config/vocabularies}/Base/accept.txt | 0 .github/vale/{Vocab => config/vocabularies}/Base/reject.txt | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename .github/vale/{Vocab => config/vocabularies}/Base/accept.txt (100%) rename .github/vale/{Vocab => config/vocabularies}/Base/reject.txt (100%) diff --git a/.github/vale/Vocab/Base/accept.txt b/.github/vale/config/vocabularies/Base/accept.txt similarity index 100% rename from .github/vale/Vocab/Base/accept.txt rename to .github/vale/config/vocabularies/Base/accept.txt diff --git a/.github/vale/Vocab/Base/reject.txt b/.github/vale/config/vocabularies/Base/reject.txt similarity index 100% rename from .github/vale/Vocab/Base/reject.txt rename to .github/vale/config/vocabularies/Base/reject.txt From 8b92046160db36089566b98aa54f1e309d6b1979 Mon Sep 17 00:00:00 2001 From: Sebastian Spier Date: Wed, 29 Jan 2025 22:40:55 +0100 Subject: [PATCH 2/2] Fix versions of the actions used in the vale GHA. allow manual triggering of the action --- .github/workflows/vale.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/vale.yml b/.github/workflows/vale.yml index 455ff34..604c343 100644 --- a/.github/workflows/vale.yml +++ b/.github/workflows/vale.yml @@ -9,16 +9,17 @@ on: pull_request: branches: - main + workflow_dispatch: jobs: vale: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Vale Linting - uses: errata-ai/vale-action@reviewdog + uses: errata-ai/vale-action@v2 with: files: '["introduction/", "infrastructure/", "measuring/", "governance/"]' vale_flags: "--glob=*.md"