Skip to content

Commit

Permalink
Tools: Add i18n string workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ryelle committed Jun 11, 2024
1 parent cc6c2e4 commit bb31703
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/i18n.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Translate Strings

on:
workflow_dispatch:
push:
branches:
- update/generate-i18n-strings
schedule:
- cron: '0 6,18 * * *'

jobs:
translation-strings:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3

- name: i18n
uses: WordPress/wporg-repo-tools/.github/actions/i18n@trunk
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --no_taxonomies --post_types=page --url=https://wordpress.org/wp-json/wp/v2/ --textdomain=wporg

- name: Commit and push
# Using a specific hash here instead of a tagged version, for risk mitigation, since this action modifies our repo.
uses: actions-js/push@a52398fac807b0c1e5f1492c969b477c8560a0ba # 1.3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: update/generate-i18n-strings
message: 'Update translation strings'

0 comments on commit bb31703

Please sign in to comment.