mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
28 lines
730 B
YAML
28 lines
730 B
YAML
name: Linting
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- "docs/**"
|
|
pull_request:
|
|
paths:
|
|
- "docs/**"
|
|
|
|
jobs:
|
|
prose:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
|
|
with:
|
|
ref: ${{ github.event.pull_request.head.sha }}
|
|
- name: Vale
|
|
uses: errata-ai/vale-action@753427452ff1d6cf7a7b76a552aa0cbee3971551
|
|
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}}
|