Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions .github/workflows/translate-on-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ permissions:
jobs:
translate:
runs-on: ubuntu-latest
if: >-
github.event_name == 'workflow_dispatch'
|| (github.event_name == 'push'
&& (github.event.head_commit == null
|| (!contains(github.event.head_commit.message, '[i18n-ci]')
&& !contains(github.event.head_commit.message, format(' from {0}/ci/', github.repository_owner)))))
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -75,8 +81,8 @@ jobs:
uses: peter-evans/create-pull-request@v6
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: "chore(i18n): update translations from main"
commit-message: "chore(i18n): update translations from main [i18n-ci]"
title: "chore(i18n): update translations from main"
body: "Automated translation update from main branch push."
branch: "chore/i18n/auto-translations"
branch: "ci/i18n/auto-translations"
delete-branch: true
Loading