From d42497516a79707f070729414c70d2eee897d9be Mon Sep 17 00:00:00 2001 From: sneakers-the-rat Date: Mon, 26 Aug 2024 11:47:21 -0700 Subject: [PATCH] better print messages --- .github/workflows/i18n.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/i18n.yaml b/.github/workflows/i18n.yaml index 9b3e1844..7a9e2944 100644 --- a/.github/workflows/i18n.yaml +++ b/.github/workflows/i18n.yaml @@ -29,10 +29,10 @@ jobs: run: | if [ -z "$(git status --porcelain)" ]; then - echo "No changes detected" + echo "No changes detected, translations are up to date!" >> $GITHUB_STEP_SUMMARY exit 0 else - echo "Changes to models detected" + echo "Changes to .po files detected, please run `nox -s update-translations` to reflect changes to source text" >> $GITHUB_STEP_SUMMARY echo "$(git status)" echo "$(git diff)" exit 1