We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43a5acf commit 59b9a84Copy full SHA for 59b9a84
.github/workflows/create_archive_and_notes.sh
@@ -18,7 +18,13 @@ set -o errexit -o nounset -o pipefail
18
# Exclude dot directories, specifically, this file so that we don't
19
# find the substring we're looking for in our own file.
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
+grep --exclude=CONTRIBUTING.md \
22
+ --exclude=RELEASING.md \
23
+ --exclude=release.py \
24
+ --exclude=release_test.py \
25
+ --exclude-dir=.* \
26
+ VERSION_NEXT_ -r
27
+if $?; then
28
echo
29
echo "Found VERSION_NEXT markers indicating version needs to be specified"
30
exit 1
0 commit comments