format.yml 527 B

123456789101112131415161718192021
  1. name: auto-format
  2. on:
  3. push:
  4. jobs:
  5. format:
  6. runs-on: ubuntu-latest
  7. if: ${{ false }}
  8. steps:
  9. - name: Checkout
  10. uses: actions/checkout@v4
  11. with:
  12. fetch-depth: 0
  13. - name: Prettify code
  14. uses: creyD/[email protected]
  15. with:
  16. prettier_options: --tab-width 4 --print-width 110 --write **/**/*.java
  17. prettier_version: "2.8.8"
  18. only_changed: True
  19. commit_message: "auto-format"
  20. prettier_plugins: "prettier-plugin-java"