From 838b6ed5aa1719335d6848d917515173ac58f935 Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Thu, 20 Mar 2025 15:58:31 -0700 Subject: [PATCH] chore: ignore releasing.md for version string check --- .github/workflows/create_archive_and_notes.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/create_archive_and_notes.sh b/.github/workflows/create_archive_and_notes.sh index dc7f8a6982..26091a8989 100755 --- a/.github/workflows/create_archive_and_notes.sh +++ b/.github/workflows/create_archive_and_notes.sh @@ -17,8 +17,8 @@ set -o errexit -o nounset -o pipefail # Exclude dot directories, specifically, this file so that we don't # find the substring we're looking for in our own file. -# Exclude CONTRIBUTING.md because it documents how to use these strings. -if grep --exclude=CONTRIBUTING.md --exclude-dir=.* VERSION_NEXT_ -r; then +# Exclude CONTRIBUTING.md, RELEASING.md because they document how to use these strings. +if grep --exclude=CONTRIBUTING.md --exclude=RELEASING.md --exclude-dir=.* VERSION_NEXT_ -r; then echo echo "Found VERSION_NEXT markers indicating version needs to be specified" exit 1