From a1a27e27649add5720ff6a089c17a5c468e30aaf Mon Sep 17 00:00:00 2001 From: Martin Lopes Date: Wed, 8 Dec 2021 12:26:16 +1000 Subject: [PATCH 1/2] Removed superfluous redirect (#23472) --- content/actions/index.md | 1 - 1 file changed, 1 deletion(-) diff --git a/content/actions/index.md b/content/actions/index.md index 4eabb1ec41..5eff35a61d 100644 --- a/content/actions/index.md +++ b/content/actions/index.md @@ -36,7 +36,6 @@ redirect_from: - /actions/automating-your-workflow-with-github-actions/ - /categories/automating-your-workflow-with-github-actions - /marketplace/actions - - /actions/guides - /actions/reference layout: product-landing versions: From 55a5805e4794692ad5e53cc48517bfa6b774a322 Mon Sep 17 00:00:00 2001 From: Marcelo Jacobus Date: Tue, 7 Dec 2021 23:33:04 -0300 Subject: [PATCH 2/2] Also check data directory for mismatching liquid tags (#23433) --- script/i18n/reset-files-with-broken-liquid-tags.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) mode change 100644 => 100755 script/i18n/reset-files-with-broken-liquid-tags.js diff --git a/script/i18n/reset-files-with-broken-liquid-tags.js b/script/i18n/reset-files-with-broken-liquid-tags.js old mode 100644 new mode 100755 index 987c191201..22297153e4 --- a/script/i18n/reset-files-with-broken-liquid-tags.js +++ b/script/i18n/reset-files-with-broken-liquid-tags.js @@ -32,7 +32,8 @@ async function main() { throw new Error(`Language ${options.language} not found`) } - const files = languageFiles(language, 'content') + const files = [languageFiles(language, 'content'), languageFiles(language, 'data')].flat() + const brokenFiles = [] files.forEach((file) => {