Skip to content

Add test char

Add test char #11

Workflow file for this run

name: Vale Documentation Linting
on:
pull_request_target: # ← This is the key change
types: [opened, synchronize, reopened]
paths:
- '**.md'
- '**.adoc'
permissions:
contents: read
pull-requests: write
jobs:
vale:
runs-on: ubuntu-latest
steps:
- name: Checkout PR branch
uses: actions/checkout@v5
with:
ref: ${{ github.event.pull_request.head.sha }} # ← Checkout the PR's code
fetch-depth: 0
- name: Run Elastic Vale Linter
uses: elastic/vale-rules@main
with:
github_token: ${{ secrets.GITHUB_TOKEN }}