Add annotations in the PR for linter errors

This should help contributors notice and fix linter errors when they
occur. Apparently it's as easy as printing a magic string to stdout, who
knew!

The lint tool doesn't give line numbers so we place the annotations at
line 1 for the time being.
This commit is contained in:
Philip Chimento 2024-11-04 17:23:23 -08:00 committed by Philip Chimento
parent 0df1565532
commit 15b7a780b3
1 changed files with 7 additions and 1 deletions

View File

@ -39,4 +39,10 @@ jobs:
for file in $CHANGED; do
echo $file
done
./tools/lint/lint.py $CHANGED
./tools/lint/lint.py $CHANGED 2> >(tee errors.out >&2)
- name: Create annotations in the PR
if: failure()
run: |
awk -F': ' <errors.out \
"{ sub(\"$(pwd)/\", \"\"); printf \"::error file=%s,line=1::%s\n\", \$1, \$2 }"