From 1e992546ae37fc7e258151f70b9b50cf8de381c7 Mon Sep 17 00:00:00 2001 From: Oliver Eyton-Williams Date: Tue, 30 Mar 2021 19:11:14 +0200 Subject: [PATCH] fix(i18n): only reject changed challenge md files (#41674) The existing action is overzealous and catches the meta.json files. --- .github/workflows/no-prs-to-translation.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/no-prs-to-translation.yml b/.github/workflows/no-prs-to-translation.yml index 1689c2eee0..93ec795dfd 100644 --- a/.github/workflows/no-prs-to-translation.yml +++ b/.github/workflows/no-prs-to-translation.yml @@ -4,7 +4,7 @@ on: branches: - 'main' paths: - - 'curriculum/challenges/**' + - 'curriculum/challenges/**/*.md' - '!curriculum/challenges/english/**' - 'client/i18n/locales/**/intro.json' - 'client/i18n/locales/**/translations.json'