Skip to content

Platform chainhook documentation #451

Platform chainhook documentation

Platform chainhook documentation #451

Workflow file for this run

name: stylecheck
on:
pull_request:
branches: [main]
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/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: run vale
uses: errata-ai/vale-action@master
with:
files: "${{ steps.get_changed_files.outputs.all }}"
onlyAnnotateModifiedLines: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}