name: Fix locale issues on: push: branches: [ master ] paths: - '**.xml' workflow_dispatch: concurrency: group: "locale" cancel-in-progress: true permissions: contents: read jobs: create: runs-on: ubuntu-latest steps: - name: Generate access token id: generate_token uses: tibdex/github-app-token@v2 with: app_id: ${{ secrets.GH_APP_ID }} private_key: ${{ secrets.GH_APP_KEY }} repository: "recloudstream/cloudstream" - uses: actions/checkout@v6 with: token: ${{ steps.generate_token.outputs.token }} - name: Install dependencies run: pip3 install lxml requests - name: Edit files run: python3 .github/locales.py - name: Commit to the repo run: | git config --local user.email "111277985+recloudstream[bot]@users.noreply.github.com" git config --local user.name "recloudstream[bot]" git add . # "echo" returns true so the build succeeds, even if no changed files git commit -m 'chore(locales): fix locale issues' || echo git push