Skip to content

Merge pull request #17 from PiusKariuki/chore/set-type-of-patient-as-… #17

Merge pull request #17 from PiusKariuki/chore/set-type-of-patient-as-…

Merge pull request #17 from PiusKariuki/chore/set-type-of-patient-as-… #17

# name: Pull Translations from Transifex
# on:
# schedule:
# - cron: '0 0 1 * *'
# workflow_dispatch:
# jobs:
# pull-translations:
# name: Pull Translations from Transifex
# runs-on: ubuntu-latest
# permissions:
# contents: write
# steps:
# - name: Checkout code
# uses: actions/checkout@v3
# - name: Pull Translations from Transifex
# run: |
# curl -o transifex.sh https://raw.githubusercontent.com/Bahmni/bahmni-infra-utils/main/transifex.sh
# chmod +x transifex.sh
# ./transifex.sh pull
# rm transifex.sh
# env:
# TX_TOKEN: ${{ secrets.TX_TOKEN }}
# - name: Commit and push changes
# id: auto-commit-action
# uses: stefanzweifel/git-auto-commit-action@v4
# with:
# commit_message: "[Bahmni Infra] | Add. Update Translation Resources"
# branch: ${{ github.ref }}
# file_pattern: 'openmrs/i18n/**/*.json'
# repository: .
# commit_user_name: Bahmni Infra
# commit_user_email: [email protected]
# commit_author: bahmni-infra <[email protected]>
# - name: Check for changes
# run: |
# if [[ steps.auto-commit-action.outputs.changes_detected == 'true' ]]; then
# echo "Changes Detected. Translation Resources Updated."
# else
# echo "No Changes Detected. Project Already Up-To-Date."
# fi