Initial commit

This commit is contained in:
Zhongwei Li
2025-11-29 17:58:54 +08:00
commit 4d6408436e
32 changed files with 3539 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
#!/bin/bash
# Vérifie l'existence du template PR
# Usage: verify_pr_template.sh <chemin_template>
# Exit: 0=ok, 1=absent
set -euo pipefail
TEMPLATE_PATH="${1:-.github/pull_request_template.md}"
if [ ! -f "$TEMPLATE_PATH" ]; then
echo "❌ Template PR absent: $TEMPLATE_PATH" >&2
exit 1
fi
echo "✅ Template PR trouvé: $TEMPLATE_PATH"
exit 0