ci: remove repository hygiene check

This commit is contained in:
2026-05-06 14:51:43 -04:00
parent 78de068cd1
commit d2d3bee975
2 changed files with 0 additions and 27 deletions

View File

@@ -10,8 +10,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check repository hygiene
run: ./scripts/check-repo-hygiene.sh
- name: Install Docker CLI
run: apt-get update && apt-get install -y docker.io
- name: Login to Gitea container registry

View File

@@ -1,25 +0,0 @@
#!/usr/bin/env sh
set -eu
failed=0
tracked_build_outputs="$(git ls-files | grep -E '(^|/)([Bb]in|[Oo]bj)(/|\\)' || true)"
if [ -n "$tracked_build_outputs" ]; then
printf '%s\n' "Tracked build output paths found:" >&2
printf '%s\n' "$tracked_build_outputs" >&2
failed=1
fi
tracked_backslash_paths="$(git ls-files | grep '\\' || true)"
if [ -n "$tracked_backslash_paths" ]; then
printf '%s\n' "Tracked paths containing literal backslashes found:" >&2
printf '%s\n' "$tracked_backslash_paths" >&2
failed=1
fi
if [ "$failed" -ne 0 ]; then
printf '%s\n' "Remove generated files from Git before building." >&2
exit 1
fi
printf '%s\n' "Repository hygiene check passed."