29 lines
777 B
YAML
Raw Normal View History

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
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:
runs-on: ubuntu-latest
steps:
2022-09-09 09:51:42 +02:00
- name: Checkout
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # tag=v3.1.0
with:
ref: ${{ github.event.pull_request.head.sha }}
2022-09-09 09:51:42 +02:00
- name: Vale
uses: errata-ai/vale-action@c4213d4de3d5f718b8497bd86161531c78992084 # tag=v2.0.1
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}}