constellation/.github/workflows/docs-vale.yml

31 lines
826 B
YAML
Raw Normal View History

2022-09-02 09:52:42 +00:00
name: Linting
on:
2022-10-12 08:50:06 +00:00
workflow_dispatch:
2022-09-02 09:52:42 +00:00
push:
branches:
2022-09-03 15:47:47 +00:00
- main
- "release/**"
2022-09-03 15:47:47 +00:00
paths:
- "docs/**"
2022-09-02 09:52:42 +00:00
pull_request:
2022-09-03 15:47:47 +00:00
paths:
- "docs/**"
2022-09-02 09:52:42 +00:00
jobs:
prose:
runs-on: ubuntu-22.04
2022-09-02 09:52:42 +00:00
steps:
2022-09-09 07:51:42 +00:00
- name: Checkout
uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b # v3.2.0
with:
ref: ${{ !github.event.pull_request.head.repo.fork && github.head_ref || '' }}
2022-09-09 07:51:42 +00:00
- name: Vale
2022-10-14 13:32:38 +00:00
uses: errata-ai/vale-action@753427452ff1d6cf7a7b76a552aa0cbee3971551 # tag=v1.5.0
2022-09-09 07:51:42 +00: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}}