Skip to content

Add Native Template release notes for version 17.3.0 #24

Add Native Template release notes for version 17.3.0

Add Native Template release notes for version 17.3.0 #24

Workflow file for this run

name: Vale Linting
# Trigger on PRs that change Markdown files
on:
pull_request:
paths:
- 'content/en/docs/**/*.md'
# Allow reading repo contents and posting PR comments
permissions:
contents: read
pull-requests: write
jobs:
vale:
# Only run on Mendix repo, not forks, and not on draft PRs
if: github.repository_owner == 'mendix' && github.event.pull_request.draft == false
runs-on: ubuntu-latest
# Cancel old runs when new commits are pushed
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
cancel-in-progress: true
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Run Vale
uses: vale-cli/vale-action@v2
with:
files: '.' # Check all changed files in the PR
version: 3.14.2
fail_on_error: false
reporter: github-pr-review
vale_flags: '--minAlertLevel=error' # Only flag errors, not warnings or suggestions
filter_mode: diff_context # Only check around changed lines, not entire files