From 7355a512823a7872b3009b6ddb9a9f5b55caef08 Mon Sep 17 00:00:00 2001 From: AustinMroz Date: Wed, 15 Oct 2025 18:50:23 -0700 Subject: [PATCH] In update-locales workflow, don't skip ci (#6081) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adding `[skip ci]` causes release workflows to break and the added safety of rerunning tests is beneficial for releases. ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-6081-In-update-locales-workflow-don-t-skip-ci-28e6d73d365081208332ef7b11ebbb52) by [Unito](https://www.unito.io) --- .github/workflows/update-locales.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update-locales.yaml b/.github/workflows/update-locales.yaml index 9ffa702cae..f38113835a 100644 --- a/.github/workflows/update-locales.yaml +++ b/.github/workflows/update-locales.yaml @@ -54,5 +54,5 @@ jobs: # Apply the stashed changes if any git stash pop || true git add src/locales/ - git diff --staged --quiet || git commit -m "Update locales [skip ci]" + git diff --staged --quiet || git commit -m "Update locales" git push origin HEAD:${{ github.head_ref }}