Skip to content

Bump CI/CD versions to PHP 8.3, WP 6.5 and tested up to 6.6 #190

Bump CI/CD versions to PHP 8.3, WP 6.5 and tested up to 6.6

Bump CI/CD versions to PHP 8.3, WP 6.5 and tested up to 6.6 #190

name: Update Translations
on:
pull_request:
branches:
- master
jobs:
update:
name: Update Translations
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.ref }}
- name: Configure git user
run: |
git config --global user.name "godaddy-wordpress-bot"
git config --global user.email "[email protected]"
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: 'yarn'
- name: Setup WP-CLI
uses: godaddy-wordpress/setup-wp-cli@main
# Yarn is still required on this project, so we need to make sure it is
# installed globally.
- name: Install yarn
run: npm i -g yarn
- name: Install dependencies
run: |
composer install --no-dev --prefer-dist --optimize-autoloader
yarn install --immutable
- name: Create translations
run: |
yarn makepot
- name: Commit changes
shell: bash
run: |
if [ ! -z "$(git status languages/go.json --porcelain)" ]; then
git add languages/go.json
git add languages/go.pot
git commit -m "[BOT] Update language translations" --no-verify
git reset --hard
git push --quiet
else
echo "No language translations to update."
fi