From a774ae7fb113a92591fe06210e2fc5807c88e095 Mon Sep 17 00:00:00 2001 From: lifehackerhansol Date: Sun, 20 Apr 2025 00:31:20 -0700 Subject: [PATCH] workflow: allow Crowdin downloads to fail to commit This happens when there are no changes to commit. This happens fairly often, as we may not have new translations. Git seems to think this warrants a non-zero exit code. That is as may be, but it is completely harmless to us, so ignore it. --- .github/workflows/crowdin-commit.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/crowdin-commit.yml b/.github/workflows/crowdin-commit.yml index 6a52888161..93500a58db 100644 --- a/.github/workflows/crowdin-commit.yml +++ b/.github/workflows/crowdin-commit.yml @@ -42,6 +42,7 @@ jobs: run: npm run docs:build - name: Commit changes + continue-on-error: true run: | git config user.name 'Faris NyanNyan' git config user.email 'nnfaris@flashcarts.net'