Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Fix typo from occured to occurred #1417

Fix typo from occured to occurred

Fix typo from occured to occurred #1417

name: Validate Query Help Files
on:
merge_group:
types: [checks_requested]
pull_request:
branches:
- main
- next
- "rc/**"
jobs:
validate-query-help-files:
strategy:
matrix:
language: [cpp, c]
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ inputs.ref }}
- name: Validate Query Help Files
env:
LANGUAGE: ${{ matrix.language }}
run: |
exit_code=0
for help_file in `find $LANGUAGE -name '*.md'`
do
if grep -F -q 'REPLACE THIS' "$help_file" > /dev/null
then
echo "Help file $help_file contains placeholders that are not replaced or removed!"
exit_code=1
fi
done
exit $exit_code
Morty Proxy This is a proxified and sanitized view of the page, visit original site.