bugfix weekly 1024 #6588
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: | |
# Trigger this job only if the pull request is from YiCAT English translation | |
if: startsWith(github.head_ref, 'l10n') | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@master | |
- name: Vale | |
uses: errata-ai/[email protected] | |
with: | |
# Use the config that only lints markdown files for now | |
config: https://github.com/AgoraDoc/doc_source/blob/master/.vale-md.ini | |
# Only lint the modified files | |
# files: __onlyModified | |
# Only lint EN files | |
# files: en-US/ | |
# Only lint modified lines | |
# Currently cannot be used together with the files setting | |
onlyAnnotateModifiedLines: true | |
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}} |