Skip to content

bugfix weekly 1024 #6588

bugfix weekly 1024

bugfix weekly 1024 #6588

Workflow file for this run

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}}