Skip to content

Commit 3c471fb

Browse files
authored
release workflow fix - skip .github directory from being searched in grep (#3069)
skip release.yml workflow file itself to prevent false grep search
1 parent 4326290 commit 3c471fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
exit 1
4747
fi
4848
49-
if grep -R --exclude-dir=.git "artifactory.ops.ripple.com" .; then
49+
if grep -R --exclude-dir=.git --exclude-dir=.github "artifactory.ops.ripple.com" .; then
5050
echo "❌ Internal Artifactory URL found"
5151
exit 1
5252
else

0 commit comments

Comments
 (0)