From 94c3353f541403e8c4ecfb635684fc639562e3d0 Mon Sep 17 00:00:00 2001 From: Christopher Willis-Ford <7019101+cwillisf@users.noreply.github.com> Date: Wed, 20 Dec 2023 12:09:33 -0800 Subject: [PATCH] feat: mark automated Transifex updates as fixes Marking this a `feat` because it's effectively a versioning scheme change. --- .github/workflows/daily-tx-pull.yml | 2 +- scripts/update-translations.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/daily-tx-pull.yml b/.github/workflows/daily-tx-pull.yml index eba64adb..9a94ae2e 100644 --- a/.github/workflows/daily-tx-pull.yml +++ b/.github/workflows/daily-tx-pull.yml @@ -53,7 +53,7 @@ jobs: echo "MADE_CHANGES=false" >> "$GITHUB_OUTPUT" echo "Nothing to commit." else - git commit -m "pull new editor translations from Transifex" + git commit -m "fix: pull new editor translations from Transifex" echo "MADE_CHANGES=true" >> "$GITHUB_OUTPUT" git push fi diff --git a/scripts/update-translations.sh b/scripts/update-translations.sh index 585c043c..e28ee001 100755 --- a/scripts/update-translations.sh +++ b/scripts/update-translations.sh @@ -11,5 +11,5 @@ npm run test # commit any updates and push. Build and release should happen on the push not here. git add . -git commit -m "pull new editor translations from Transifex" +git commit -m "fix: pull new editor translations from Transifex" git push https://${GITHUB_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git HEAD:master