2022-09-02 11:52:42 +02:00
|
|
|
name: Linting
|
|
|
|
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:
|
|
|
|
prose:
|
2022-11-10 16:55:24 +01:00
|
|
|
runs-on: ubuntu-22.04
|
2022-09-02 11:52:42 +02:00
|
|
|
steps:
|
2022-09-09 09:51:42 +02:00
|
|
|
- name: Checkout
|
2022-10-12 18:05:58 +02:00
|
|
|
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # tag=v3.1.0
|
2022-09-19 10:59:46 +02:00
|
|
|
with:
|
2022-10-19 10:32:22 +02:00
|
|
|
ref: ${{ github.head_ref }}
|
2022-11-10 17:22:26 +01:00
|
|
|
|
2022-09-09 09:51:42 +02:00
|
|
|
- name: Vale
|
2022-10-14 15:32:38 +02:00
|
|
|
uses: errata-ai/vale-action@753427452ff1d6cf7a7b76a552aa0cbee3971551 # tag=v1.5.0
|
2022-09-09 09:51:42 +02:00
|
|
|
with:
|
|
|
|
files: docs/docs
|
|
|
|
env:
|
|
|
|
# Required, set by GitHub actions automatically:
|
|
|
|
# https://docs.github.com/en/actions/security-guides/automatic-token-authentication#about-the-github_token-secret
|
|
|
|
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
|