Skip to content
This repository was archived by the owner on Jun 26, 2025. It is now read-only.

Leave deprecation notice in README (#275) #121

Leave deprecation notice in README (#275)

Leave deprecation notice in README (#275) #121

Workflow file for this run

# Workflow to automatically push translation source files to Transifex
# Runs on main branch updates and manual triggers
name: "Update Transifex on Push"
on:
workflow_dispatch: # Allow manual trigger from GitHub UI
push:
branches:
- main
jobs:
push-translations-to-transifex:
name: Sync Source Files to Transifex
runs-on: ubuntu-latest
permissions:
actions: read # Minimal permissions needed for this workflow
steps:
# Step 1: Check out repository
- name: Checkout repository
uses: actions/checkout@v4
# Step 2: Push updated source files to Transifex
- name: Push source files to Transifex
uses: transifex/cli-action@v2
with:
token: ${{ secrets.TRANSIFEX_TOKEN }}