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

28 lines
730 B
YAML
Raw Normal View History

2022-09-02 09:52:42 +00:00
name: Linting
on:
push:
branches:
2022-09-03 15:47:47 +00:00
- main
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-latest
steps:
2022-09-09 07:51:42 +00:00
- name: Checkout
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8
with:
ref: ${{ github.event.pull_request.head.sha }}
2022-09-09 07:51:42 +00:00
- name: Vale
uses: errata-ai/vale-action@753427452ff1d6cf7a7b76a552aa0cbee3971551
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}}