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 6c4666b commit c591571Copy full SHA for c591571
test_changes.sh
@@ -12,12 +12,12 @@ fi
12
echo "Using head reference: ${HEAD_REF}"
13
14
CHANGED_SCRAPERS=$(git whatchanged --name-only --pretty="" origin/main..${HEAD_REF} |
15
- grep spiders || true |
16
- grep -v helper || true |
+ grep spiders |
+ grep -v helper |
17
sed 's/jedeschule\/spiders\///' |
18
sed 's/\.py//' |
19
sed 's/_/\-/' |
20
- uniq)
+ uniq) || true
21
22
if [ -z "$CHANGED_SCRAPERS" ]; then
23
echo "No scrapers were changed"
0 commit comments