Skip to content

Commit f02a8ce

Browse files
author
markzegarelli
authored
Merge branch 'master' into dependabot/npm_and_yarn/browserslist-4.16.6
2 parents 7cfb451 + 473e6e9 commit f02a8ce

File tree

102 files changed

+1884
-1189
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

102 files changed

+1884
-1189
lines changed

.vale.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ Vocab = Docs
44

55
[*.md]
66
BasedOnStyles = write-good, segment
7+
TokenIgnores = ({% .* %})

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/catalog.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ const slugify = (displayName) => {
2222
if (slug === 'roku-alpha') slug = 'roku'
2323
if (slug === 'shopify-by-littledata') slug = 'shopify-littledata'
2424
if (slug === 'talon-one') slug = 'talonone'
25+
if (slug == 'google-adwords-remarketing-lists-customer-match') slug = 'adwords-remarketing-lists'
26+
if (slug == 'canny-classic') slug = 'canny'
2527
return slug
2628
}
2729

scripts/ignore.sh

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,13 @@ log=$(env -i git log -1 --pretty=%B)
66
# run a series of checks for common reasons that we shouldn't preview build.
77
# if no checks match, exit with code 1 to run the build
88

9+
# Force a build
10+
if echo $log | grep -1 'netlify\-build'; then
11+
echo "Force build becuase Netlify is a benevolent overseer"
12+
exit 1
13+
914
# ignore for simple typo fixes
10-
if echo "$log" | grep -q 'typo'; then
15+
elif echo "$log" | grep -q 'typo'; then
1116
echo "Build ignored because 'typo' is in the commit message."
1217
exit
1318
# ignore link / url updates
@@ -23,7 +28,7 @@ elif echo "$log" | grep -q 'dependabot'; then
2328
echo "Ignoring dependabot update"
2429
exit
2530
# ignore when master is merged into a branch
26-
elif echo "$log" | grep -q 'Merge branch \SMaster\S'; then
31+
elif echo "$log" | grep -q 'Merge branch \Smaster\S'; then
2732
echo "Build ignored because it's only an update from the main branch."
2833
exit
2934
else

src/_data/catalog/destination_categories.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# AUTOGENERATED FROM PLATFORM API. DO NOT EDIT
2-
# destination categories last updated 2021-05-18
2+
# destination categories last updated 2021-06-23
33
items:
44
- display_name: Email Marketing
55
slug: email-marketing

0 commit comments

Comments
 (0)