From 007fe5fc6d9436b3d41b64aa227a6adf8be21adc Mon Sep 17 00:00:00 2001 From: Ryo Nakano Date: Sun, 13 Jul 2025 00:05:48 +0900 Subject: [PATCH 1/3] Actions: Add gettext-flatpak --- .github/workflows/gettext.yml | 38 +++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 .github/workflows/gettext.yml diff --git a/.github/workflows/gettext.yml b/.github/workflows/gettext.yml new file mode 100644 index 0000000..9efedb7 --- /dev/null +++ b/.github/workflows/gettext.yml @@ -0,0 +1,38 @@ +--- + +name: Merge + +on: + push: + branches: + - master + +jobs: + gettext: + name: Gettext + runs-on: ubuntu-latest + container: + image: ghcr.io/elementary/flatpak-platform/runtime:8.2-x86_64 + options: --privileged + + steps: + - name: Install git, python3-git and jq + run: | + apt-get update + apt-get install git jq python3-git -y + + - name: Clone repository + uses: actions/checkout@v4 + with: + token: ${{ secrets.GIT_USER_TOKEN }} + + - name: Configure Git + run: | + git config --global --add safe.directory "$GITHUB_WORKSPACE" + - name: Update Translation Files + uses: elementary/actions/gettext-flatpak@main + with: + manifest-path: 'io.elementary.atlas.yml' + env: + GIT_USER_NAME: "elementaryBot" + GIT_USER_EMAIL: "builds@elementary.io" From 45dafb32f9a68d54beceb3c807c4bd0ece96e043 Mon Sep 17 00:00:00 2001 From: Ryo Nakano Date: Sun, 13 Jul 2025 06:45:24 +0900 Subject: [PATCH 2/3] Fix branch name --- .github/workflows/gettext.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/gettext.yml b/.github/workflows/gettext.yml index 9efedb7..b1b273d 100644 --- a/.github/workflows/gettext.yml +++ b/.github/workflows/gettext.yml @@ -5,7 +5,7 @@ name: Merge on: push: branches: - - master + - main jobs: gettext: From 535ce0fab8693c69eae3a0f1a060eeb4cc0ab274 Mon Sep 17 00:00:00 2001 From: Ryo Nakano Date: Sun, 13 Jul 2025 08:31:57 +0900 Subject: [PATCH 3/3] Re-RDNN to io.elementary.maps --- .github/workflows/gettext.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/gettext.yml b/.github/workflows/gettext.yml index b1b273d..6eca062 100644 --- a/.github/workflows/gettext.yml +++ b/.github/workflows/gettext.yml @@ -32,7 +32,7 @@ jobs: - name: Update Translation Files uses: elementary/actions/gettext-flatpak@main with: - manifest-path: 'io.elementary.atlas.yml' + manifest-path: 'io.elementary.maps.yml' env: GIT_USER_NAME: "elementaryBot" GIT_USER_EMAIL: "builds@elementary.io"