mirror of https://github.com/lukechilds/docs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
796 B
27 lines
796 B
name: stylecheck
|
|
on:
|
|
pull_request:
|
|
branches: [master]
|
|
paths:
|
|
- '**.md'
|
|
|
|
jobs:
|
|
stylecheck:
|
|
runs-on: ubuntu-latest
|
|
if: github.event.pull_request.head.repo.full_name == github.repository
|
|
steps:
|
|
- name: checkout
|
|
uses: actions/checkout@v2
|
|
- name: get changed Files
|
|
id: get_changed_files
|
|
uses: lots0logs/gh-action-get-changed-files@2.1.4
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: run vale
|
|
uses: errata-ai/vale-action@master
|
|
with:
|
|
styles: https://github.com/errata-ai/Google/releases/latest/download/Google.zip
|
|
files: '${{ steps.get_changed_files.outputs.all }}'
|
|
onlyAnnotateModifiedLines: true
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|