Apply automatic changes #213
This file contains 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
name: Clean Files and Update Untranslated | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
paths: | |
- "**.arb" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.DECKBLUE_TOKEN }} | |
- uses: dart-lang/[email protected] | |
- name: Clean Arb Files | |
run: dart run ./bin/clean_arb_file.dart | |
- name: Auto Update Untranslated | |
run: dart run ./bin/update_untranslated.dart | |
- uses: stefanzweifel/git-auto-commit-action@v4 |