Module: kamailio Branch: master Commit: 9b56503fdb6b6ad50a0ffc00335fdb71651ed6c6 URL: https://github.com/kamailio/kamailio/commit/9b56503fdb6b6ad50a0ffc00335fdb71651ed6c6
Author: Henning Westerholt <[email protected]> Committer: Henning Westerholt <[email protected]> Date: 2025-12-10T16:02:59Z github: add utils directories also to allowed prefixes (e.g. kamctl) --- Modified: .github/scripts/check-commit.sh --- Diff: https://github.com/kamailio/kamailio/commit/9b56503fdb6b6ad50a0ffc00335fdb71651ed6c6.diff Patch: https://github.com/kamailio/kamailio/commit/9b56503fdb6b6ad50a0ffc00335fdb71651ed6c6.patch --- diff --git a/.github/scripts/check-commit.sh b/.github/scripts/check-commit.sh index 099e070f15c..920bacc6268 100755 --- a/.github/scripts/check-commit.sh +++ b/.github/scripts/check-commit.sh @@ -47,6 +47,12 @@ check_subject() { return fi + # utils directory? + if [ -d "utils/${prefix}" ] ; then + echo "[${commit}] prefix is a utils dir in the repo, OK[${prefix}]" + return + fi + # file (e.g., ChangeLog, etc/kamailio.cfg) if [ -f "${prefix}" ] ; then echo "[${commit}] prefix is a file in the repo, OK[${prefix}]" _______________________________________________ Kamailio - Development Mailing List -- [email protected] To unsubscribe send an email to [email protected] Important: keep the mailing list in the recipients, do not reply only to the sender!
