2023-02-13 16:19:37 +01:00
|
|
|
name: Spelling check for docs (Vale)
|
2022-09-02 11:52:42 +02:00
|
|
|
on:
|
2022-10-12 10:50:06 +02:00
|
|
|
workflow_dispatch:
|
2022-09-02 11:52:42 +02:00
|
|
|
push:
|
|
|
|
branches:
|
2022-09-03 17:47:47 +02:00
|
|
|
- main
|
2022-10-18 16:17:41 +02:00
|
|
|
- "release/**"
|
2022-09-03 17:47:47 +02:00
|
|
|
paths:
|
|
|
|
- "docs/**"
|
2022-09-02 11:52:42 +02:00
|
|
|
pull_request:
|
2022-09-03 17:47:47 +02:00
|
|
|
paths:
|
|
|
|
- "docs/**"
|
2022-09-02 11:52:42 +02:00
|
|
|
|
|
|
|
jobs:
|
2024-01-23 17:19:53 +01:00
|
|
|
vale:
|
2024-10-09 12:16:10 +02:00
|
|
|
runs-on: ubuntu-24.04
|
2022-09-02 11:52:42 +02:00
|
|
|
steps:
|
2022-09-09 09:51:42 +02:00
|
|
|
- name: Checkout
|
2024-11-28 16:15:26 +01:00
|
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
2022-09-19 10:59:46 +02:00
|
|
|
with:
|
2022-12-19 15:21:28 +01:00
|
|
|
ref: ${{ !github.event.pull_request.head.repo.fork && github.head_ref || '' }}
|
2024-10-11 19:23:31 +02:00
|
|
|
# Work around https://github.com/errata-ai/vale-action/issues/128.
|
|
|
|
- run: |
|
|
|
|
venv="$HOME/.local/share/venv"
|
|
|
|
python3 -m venv "$venv"
|
|
|
|
echo "$venv/bin" >> "$GITHUB_PATH"
|
2022-09-09 09:51:42 +02:00
|
|
|
- name: Vale
|
2024-11-28 16:15:26 +01:00
|
|
|
uses: errata-ai/vale-action@2690bc95f0ed3cb5220492575af09c51b04fbea9 # tag=reviewdog
|
2022-09-09 09:51:42 +02:00
|
|
|
with:
|
|
|
|
files: docs/docs
|
2024-01-23 17:19:53 +01:00
|
|
|
fail_on_error: true
|