2022-09-02 05:52:42 -04:00
|
|
|
name: Linting
|
|
|
|
on:
|
2022-10-12 04:50:06 -04:00
|
|
|
workflow_dispatch:
|
2022-09-02 05:52:42 -04:00
|
|
|
push:
|
|
|
|
branches:
|
2022-09-03 11:47:47 -04:00
|
|
|
- main
|
2022-10-18 10:17:41 -04:00
|
|
|
- "release/**"
|
2022-09-03 11:47:47 -04:00
|
|
|
paths:
|
|
|
|
- "docs/**"
|
2022-09-02 05:52:42 -04:00
|
|
|
pull_request:
|
2022-09-03 11:47:47 -04:00
|
|
|
paths:
|
|
|
|
- "docs/**"
|
2022-09-02 05:52:42 -04:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
prose:
|
2022-11-10 10:55:24 -05:00
|
|
|
runs-on: ubuntu-22.04
|
2022-09-02 05:52:42 -04:00
|
|
|
steps:
|
2022-09-09 03:51:42 -04:00
|
|
|
- name: Checkout
|
2022-12-14 08:55:14 -05:00
|
|
|
uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b # v3.2.0
|
2022-09-19 04:59:46 -04:00
|
|
|
with:
|
2022-10-19 04:32:22 -04:00
|
|
|
ref: ${{ github.head_ref }}
|
2022-11-10 11:22:26 -05:00
|
|
|
|
2022-09-09 03:51:42 -04:00
|
|
|
- name: Vale
|
2022-10-14 09:32:38 -04:00
|
|
|
uses: errata-ai/vale-action@753427452ff1d6cf7a7b76a552aa0cbee3971551 # tag=v1.5.0
|
2022-09-09 03:51:42 -04: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}}
|