chore(dev): release 1.8.1 (#72) #11
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: Update POT file | |
on: | |
push: | |
branches: | |
- dev | |
paths: | |
- '**.php' | |
- '**.js' | |
workflow_dispatch: | |
jobs: | |
update-pot: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.PAT_FOR_GITHUB_ACTIONS }} | |
- name: Setup PHP with tools | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.1' | |
tools: composer, wp-cli/wp-cli-bundle | |
- name: Update POT file | |
run: wp i18n make-pot . languages/fake-plugin.pot --domain=pressbooks-fake-plugin --slug=fake-plugin --package-name="Fake Plugin" --headers="{\"Report-Msgid-Bugs-To\":\"https://github.com/pressbooks/pressbooks/issues\"}" | |
- name: Create Pull Request for POT file | |
id: cprpot | |
uses: peter-evans/create-pull-request@v6 | |
with: | |
token: ${{ secrets.PAT_FOR_GITHUB_ACTIONS }} | |
labels: automerge-pot | |
commit-message: 'chore(l10n): update pot file' | |
title: 'chore(l10n): update pot file' | |
body: 'Update the POT file for this plugin.' | |
branch: chore/update-pot-file |