mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2026-08-10 10:50:52 +00:00
53 lines
1.7 KiB
YAML
53 lines
1.7 KiB
YAML
# SPDX-FileCopyrightText: 2024 Suguru Hirahara
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
---
|
|
name: Update translations
|
|
|
|
on: # yamllint disable-line rule:truthy
|
|
push:
|
|
branches:
|
|
- master
|
|
paths: # See include_patterns on conf.py
|
|
- 'docs/*.md'
|
|
- 'i18n/README.md'
|
|
- '*.md'
|
|
|
|
permissions:
|
|
contents: write
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
update:
|
|
if: github.repository == 'spantaleev/matrix-docker-ansible-deploy'
|
|
name: Update translations
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
|
|
|
|
- uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7
|
|
with:
|
|
python-version: '3.14'
|
|
|
|
# Setting up recommended prerequisites
|
|
# See: i18n/README.md
|
|
- uses: astral-sh/setup-uv@c771a70e6277c0a99b617c7a806ffedaca235ff9 # v9.0.0
|
|
- uses: extractions/setup-just@53165ef7e734c5c07cb06b3c8e7b647c5aa16db3 # v4
|
|
|
|
# TODO: optimize when we start publishing translations and integrate a Weblate instance
|
|
- name: Update translation catalog templates (POT) files
|
|
run: just --justfile i18n/justfile extract-translation-templates
|
|
|
|
- name: Create Pull Request
|
|
uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # v8.1.1
|
|
with:
|
|
author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> # Same as committer
|
|
body: This is an automatic pull request to update translation files.
|
|
branch: create-pull-request/i18n
|
|
commit-message: Automatic translations update
|
|
delete-branch: true
|
|
labels: docs
|
|
sign-commits: true
|
|
title: Automatic translations update
|