i18n #186
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: 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.9' | |
- 'stable-4.10' | |
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 'gh_actions@users.noreply.github.com' | |
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 |