From 9bd7fc1bd5e9ddcfd5817b4e1a6358d1a2c194d5 Mon Sep 17 00:00:00 2001 From: Aaron Date: Fri, 6 Feb 2026 13:35:57 -0600 Subject: [PATCH] chore: Don't report unreleased chore/doc commits --- scripts/list-unreleased-commits.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/list-unreleased-commits.sh b/scripts/list-unreleased-commits.sh index 7e38fb85..e04f6b60 100755 --- a/scripts/list-unreleased-commits.sh +++ b/scripts/list-unreleased-commits.sh @@ -34,11 +34,11 @@ for dir in "$PACKAGES_DIR"/*; do if [ -n "$last_tag" ]; then # If a tag is found, show commits since that tag for the specific package directory echo "Commits since last tag ($last_tag):" - git log "${last_tag}..HEAD" --oneline -- "$dir" + git log "${last_tag}..HEAD" --oneline -- "$dir" | grep -v -E "^[a-f0-9]* (chore|docs)" else # If no tag is found, show all commits for that package directory echo "No tags found for this package. Listing all commits:" - git log --oneline -- "$dir" + git log --oneline -- "$dir" | grep -v -E "^[a-f0-9]* (chore|docs)" fi echo "" fi