From 1840ab3ab8e0d32b77ee26cba3266edb52c74cdd Mon Sep 17 00:00:00 2001 From: Joe Rafaniello Date: Fri, 13 Sep 2024 13:45:15 -0400 Subject: [PATCH] Add locale:po_to_json github action --- .github/workflows/locale_po_to_json.yaml | 56 ++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 .github/workflows/locale_po_to_json.yaml diff --git a/.github/workflows/locale_po_to_json.yaml b/.github/workflows/locale_po_to_json.yaml new file mode 100644 index 00000000000..21d4cff6c48 --- /dev/null +++ b/.github/workflows/locale_po_to_json.yaml @@ -0,0 +1,56 @@ +name: "Locale PO to JSON" + +on: + workflow_dispatch: +permissions: + contents: read +jobs: + locale_po_to_json: + if: github.repository_owner == 'ManageIQ' + runs-on: ubuntu-latest + services: + postgres: + image: manageiq/postgresql:13 + env: + POSTGRESQL_USER: root + POSTGRESQL_PASSWORD: smartvm + POSTGRESQL_DATABASE: vmdb_i18n + options: --health-cmd pg_isready --health-interval 2s --health-timeout 5s --health-retries 5 + ports: + - 5432:5432 + env: + PGHOST: localhost + PGPASSWORD: smartvm + RAILS_ENV: i18n + SKIP_TEST_RESET: true + steps: + - uses: actions/checkout@v4 + - name: Set up system + run: bin/before_install + - name: Set up Ruby + uses: ruby/setup-ruby@v1 + with: + ruby-version: "3.1" + bundler-cache: true + timeout-minutes: 30 + - name: Prepare dependencies + run: bin/setup + - name: Install gettext for msgfmt --check support + run: sudo apt-get install -y gettext + - name: Run app:locale:po_to_json + run: bundle exec rake app:locale:po_to_json + - name: Create Pull Request + uses: peter-evans/create-pull-request@v6 + with: + add-paths: | + app/javascript/oldjs/locale + commit-message: Update UI json translation files + branch: update_ui_json_translation_files + author: ManageIQ Bot + committer: ManageIQ Bot + delete-branch: true + labels: internationalization + push-to-fork: ManageIQ/manageiq-ui-classic + title: Update UI json translation files + body: Update UI json translation files + token: ${{ secrets.PR_TOKEN }}