Skip to content

new file: .github/workflows/00_vetting.yml #1

new file: .github/workflows/00_vetting.yml

new file: .github/workflows/00_vetting.yml #1

Workflow file for this run

- name: Check for unvetted files outside staging

Check failure on line 1 in .github/workflows/00_vetting.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/00_vetting.yml

Invalid workflow file

(Line: 1, Col: 1): A sequence was not expected
run: |
unvetted=$(git diff --name-only origin/main HEAD | grep -E '^(src/.*\.(sh|conf|png|jpg|jpeg|gif|svg))$' || true)
if [[ -n "$unvetted" ]]; then
echo "ERROR: Found unvetted files outside ./staging:"
echo "$unvetted"
exit 1
fi