Skip to content

Commit e6f79dc

Browse files
authored
chore: ignore releasing.md for version string check (#2684)
The RELEASING.md docs contain the VERSION_NEXT marker string in their docs, so also have to be ignored by the release script.
1 parent d976228 commit e6f79dc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/create_archive_and_notes.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ set -o errexit -o nounset -o pipefail
1717

1818
# Exclude dot directories, specifically, this file so that we don't
1919
# find the substring we're looking for in our own file.
20-
# Exclude CONTRIBUTING.md because it documents how to use these strings.
21-
if grep --exclude=CONTRIBUTING.md --exclude-dir=.* VERSION_NEXT_ -r; then
20+
# Exclude CONTRIBUTING.md, RELEASING.md because they document how to use these strings.
21+
if grep --exclude=CONTRIBUTING.md --exclude=RELEASING.md --exclude-dir=.* VERSION_NEXT_ -r; then
2222
echo
2323
echo "Found VERSION_NEXT markers indicating version needs to be specified"
2424
exit 1

0 commit comments

Comments
 (0)