Skip to content

Correct verification step order in MLM 5.0 to 5.2 upgrade guide (bsc#… #4924

Correct verification step order in MLM 5.0 to 5.2 upgrade guide (bsc#…

Correct verification step order in MLM 5.0 to 5.2 upgrade guide (bsc#… #4924

# We keep this workflow without using uyuni-docs-helper as it interacts directly with the repository
name: Update translation files
on:
push:
branches:
- 'master'
- 'manager-4.3'
- 'manager-4.3-MU-4.3.[0-9][0-9]?' # MU branches
- 'manager-5.0'
- 'manager-5.0-MU-5.0.[0-9][0-9]?'
- 'manager-5.1'
- 'manager-5.1-MU-5.1.[0-9][0-9]?'
- 'manager-5.2'
- 'manager-5.2-MU-5.2.[0-9][0-9]?'
jobs:
run:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 #v7.0.0
- name: 'Install po4a'
run: |
sudo apt-get update
sudo apt-get install -y po4a
- name: 'Update gettext files'
run: |
bash scripts/make_pot.sh
- name: 'Commit changes, if any'
uses: EndBug/add-and-commit@290ea2c423ad77ca9c62ae0f5b224379612c0321 #v10.0.0
with:
author_name: Galaxy CI
author_email: galaxy-ci@suse.de
message: 'Automatic commit: update translation files'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}