Skip to content

New translations fluid-name.cfg (Russian) #72

New translations fluid-name.cfg (Russian)

New translations fluid-name.cfg (Russian) #72

name: Patch crowdin PR
on:
push:
branches:
- l10n_main
jobs:
auto_commit:
runs-on: ubuntu-latest
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the
# added or changed files to the repository.
contents: write
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Replace ]= in .cfg files
run: |
find locale -type f -name "*.cfg" -exec sed -i 's/]=/]/' {} +
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v41
- name: Push changes
if: ${{ steps.changed-files.outputs.any_modified == 'true' }}
run:
git config --global user.email "[email protected]"
git config --global user.name "GitHub Actions"
git add .
git commit -m "Auto commit: Replace ]= with ] in .cfg files"

Check failure on line 35 in .github/workflows/patch-crowdin-format.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/patch-crowdin-format.yaml

Invalid workflow file

You have an error in your yaml syntax on line 35
git push origin l10n_main