Highlight current section on right sidebar of post #227
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Linting | |
on: [pull_request] | |
jobs: | |
prose: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@master | |
- name: Vale | |
uses: errata-ai/[email protected] | |
with: | |
onlyAnnotateModifiedLines: true | |
reporter: github-pr-check | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |