mirror of
https://github.com/CatimaLoyalty/Android.git
synced 2026-06-13 02:59:48 -04:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 6.0.2 to 6.0.3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6.0.2...v6.0.3) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.3 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
31 lines
660 B
YAML
31 lines
660 B
YAML
name: Update locales
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- app/src/main/res/values-*/strings.xml
|
|
- app/src/main/res/values/settings.xml
|
|
|
|
permissions:
|
|
contents: write
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
update-locales:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6.0.3
|
|
- name: Add new locales
|
|
run: .scripts/new-locales.py
|
|
- name: Update locales
|
|
run: .scripts/locales.py
|
|
- name: Create Pull Request
|
|
uses: peter-evans/create-pull-request@v8.1.1
|
|
with:
|
|
title: "Update locales"
|
|
commit-message: "Update locales"
|
|
branch-suffix: timestamp
|