From 61c29a0cf7cd22dec7a1124a0dee97a50ff29c8a Mon Sep 17 00:00:00 2001 From: Eduardo Shirai Date: Mon, 13 Apr 2026 11:31:56 +0900 Subject: [PATCH] updates Check version consistency in ci.yml by excluding blog so it does not block new release notes --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2ddbb66..f0ce15b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,7 +37,7 @@ jobs: run: | VERSION=$(grep '^version' rapina/Cargo.toml | head -1 | sed 's/.*"\(.*\)"/\1/') MINOR="${VERSION%.*}" - BAD=$(grep -rn 'rapina = { version = "' docs/ rapina/examples/ \ + BAD=$(grep -rn 'rapina = { version = "' docs/ rapina/examples/ --exclude-dir="blog" \ --include="*.md" --include="*.toml" \ | grep -v "\"$VERSION\"\|\"$MINOR\"\|\"\.\.\.\"" || true) if [ -n "$BAD" ]; then