tabindent.yml 546 B

12345678910111213141516171819
  1. name: Change indentation to tabs
  2. on:
  3. push:
  4. branches: [ translations ]
  5. jobs:
  6. run:
  7. runs-on: ubuntu-latest
  8. steps:
  9. - uses: actions/checkout@v2
  10. - run: |
  11. git config filter.tabindent.smudge 'unexpand --tabs=4 --first-only'
  12. git config filter.tabindent.clean 'unexpand --tabs=4 --first-only'
  13. git config user.name Markus-Rost
  14. git config user.email 37275477+Markus-Rost@users.noreply.github.com
  15. git add .
  16. git commit -m "Change indentation to tabs"
  17. git push