From 8c1b9b0016e6b38bdaf5383abea92533634fdea0 Mon Sep 17 00:00:00 2001 From: "Ben V. Brown" Date: Sat, 3 Dec 2022 19:34:40 +1100 Subject: [PATCH] Weblate --- .github/workflows/weblate.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/weblate.yml diff --git a/.github/workflows/weblate.yml b/.github/workflows/weblate.yml new file mode 100644 index 0000000000..01355c3497 --- /dev/null +++ b/.github/workflows/weblate.yml @@ -0,0 +1,25 @@ +name: Weblate PR +on: + create: + branches: ["translations"] + +jobs: + pull-request: + name: Open PR to dev + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + name: checkout + + - uses: repo-sync/pull-request@v2 + name: pull-request + with: + destination_branch: "main" + pr_title: "Merging newest translations into dev" # Title of pull request + pr_body: | # Full markdown support, requires pr_title to be set + Translations automatically submitted by Weblate + + _Translations from [Weblate](https://hosted.weblate.org/projects/ironos/main-firmware/)_ + pr_reviewer: "ralim" + pr_draft: false + github_token: ${{ secrets.GITHUB_TOKEN }}