From 56562520e69167951dce6de3e8408fc78d521497 Mon Sep 17 00:00:00 2001 From: gpotter2 <10530980+gpotter2@users.noreply.github.com> Date: Mon, 25 May 2026 12:34:19 +0200 Subject: [PATCH] ci: require the AI-Assisted tag only on commits done after 2026 AI-Assisted: no --- .config/ci/check_commits.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/ci/check_commits.sh b/.config/ci/check_commits.sh index c139e29ca77..f5efc667c48 100755 --- a/.config/ci/check_commits.sh +++ b/.config/ci/check_commits.sh @@ -6,7 +6,7 @@ # We copy Wireshark's contributing guide, thanks to them for the idea ! # This script is inspired by https://gitlab.com/wireshark/wireshark/-/blob/master/.gitlab-ci.yml -commits=$(git rev-list --no-merges --max-count=$((PR_FETCH_DEPTH - 1)) HEAD) +commits=$(git rev-list --no-merges --after="2026-01-00T00:00:00" --max-count=$((PR_FETCH_DEPTH - 1)) HEAD) if [ -z "$commits" ]; then echo "No commit to check in PR. OK." exit 0