Skip to content

Scheduled Transifex Update #179

Scheduled Transifex Update

Scheduled Transifex Update #179

Workflow file for this run

on:
workflow_dispatch:
schedule:
# every day at 8:15 PM UTC
- cron: "15 20 * * *"
name: "Scheduled Transifex Update"
jobs:
pull-translations-from-transifex:
name: pull-translations-from-transifex
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- uses: actions/checkout@v4
- name: Push source file using transifex client
uses: transifex/cli-action@v2
with:
token: ${{ secrets.TRANSIFEX_TOKEN }}
args: pull --force --all
- name: Create PR if necessary
uses: peter-evans/[email protected]
with:
commit-message: "(chore) Update translations from Transifex"
title: "(chore) Update translations from Transifex"
body: "Automated updates of translations pulled from Transifex"
branch: "chore/update-transifex"
author: "OpenMRS Bot <[email protected]>"
token: ${{ secrets.GITHUB_TOKEN }}