From ddea1afdbb25cd571e5895d417a888ec0cec645e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Manuel=20Barroso=20Galindo?= Date: Tue, 27 Dec 2022 03:02:00 +0100 Subject: [PATCH] Raising validation threshold to 10000 --- .github/workflows/fetch.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/fetch.yml b/.github/workflows/fetch.yml index d5a882a..de5cb65 100644 --- a/.github/workflows/fetch.yml +++ b/.github/workflows/fetch.yml @@ -36,7 +36,7 @@ jobs: set -euo pipefail FILES=$(find . -type f | wc -l) echo "FILES: ${FILES}" - if (( ${FILES} < 5000 )) ; then + if (( ${FILES} < 10000 )) ; then echo "Not enough files!" exit 1 fi