Skip to content

i18n

i18n #162

Workflow file for this run

name: i18n
on:
# allow running manually
workflow_dispatch:
# run weekly
schedule:
- cron: '30 5 * * 0'
jobs:
i18n:
runs-on: ubuntu-latest
strategy:
matrix:
branch:
- 'master'
- 'stable-4.6'
- 'stable-4.9'
steps:
- uses: actions/checkout@v4
with:
ref: ${{ matrix.branch }}
- name: "extract strings"
run: |
npm install
npm run gettext:extract
- name: "compile strings"
run: npm run gettext:compile
- name: "commit"
run: |
git config --global user.name 'GH Actions'
git config --global user.email '[email protected]'
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/ansible/ansible-hub-ui.git
git add locale/
if git commit -m "Automated updated of i18n strings on $(date +'%Y-%m-%d')"; then
git push --set-upstream origin
fi