Skip to content

Merge branch 'master' of github.com:Sudomemo/sudomemo-locales #121

Merge branch 'master' of github.com:Sudomemo/sudomemo-locales

Merge branch 'master' of github.com:Sudomemo/sudomemo-locales #121

Workflow file for this run

name: Clean/sort locale files
on:
push:
workflow_dispatch:
jobs:
clean_locale_files:
runs-on: ubuntu-latest
steps:
- name: Check out this repo
uses: actions/checkout@v3
- name: install dependencies
run: |
sudo apt-get install -y gettext
- name: Clean/sort locale files
run: |-
DO_SORT=true ./clean_all.sh
- name: Commit and push if it changed
run: |-
git config user.name "Automated"
git config user.email "[email protected]"
git add -A
timestamp=$(date -u)
git commit -m "Cleaning locale files: ${timestamp}" || exit 0
git push