tabindent.yml 579 B

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