This repository was archived by the owner on Jun 26, 2025. It is now read-only.
  
  
  
  
Leave deprecation notice in README (#275) #121
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | # 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 }} |