docs(readme): Fix vercel images #86
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 Translation Progress | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
paths: | |
- "src/translations.php" | |
- "scripts/translation-progress.php" | |
- ".github/workflows/translation-progress.yml" | |
- "README.md" | |
jobs: | |
build-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: php-actions/composer@v6 | |
with: | |
php_extensions: intl | |
- name: Update Translations | |
run: php scripts/translation-progress.php | |
- name: Commit Changes | |
uses: EndBug/add-and-commit@v7 | |
with: | |
author_name: GitHub Actions | |
author_email: github-actions[bot]@users.noreply.github.com | |
message: "docs(readme): Update translation progress" | |
add: "README.md" |