Fix workflow description #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update mo files | |
on: | |
push: | |
branches: ["main"] | |
paths: | |
- "package_build/locale/**/*.po" | |
- ".github/workflows/update-mo-files.yml" | |
workflow_dispatch: | |
jobs: | |
push: | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: Install Poethepoet | |
run: pipx install poethepoet | |
- name: Install gettext utils | |
run: sudo apt install gettext | |
- name: Update mo files | |
run: poe msgfmt | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v6 | |
with: | |
title: Update source language file | |
commit-message: Update source language file | |
author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> | |
add-paths: package_build/locale/**/messages.mo | |
delete-branch: true |