Skip to content

🔖 [RELEASE] Bump and release version 21.7.5 #7

🔖 [RELEASE] Bump and release version 21.7.5

🔖 [RELEASE] Bump and release version 21.7.5 #7

# GitHub Action for code formatting using IntelliJ IDEA
name: IntelliJ Format
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
formatting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Cache IDEA
uses: actions/cache@v3
with:
path: /home/runner/work/_temp/_github_workflow/idea-cache
key: ${{ runner.os }}-idea-cache-v2
- uses: notdevcody/intellij-format-action@main
with:
include-glob: '*.java'
style-settings-file: '.idea/codeStyles/Default.xml'
commit-message: ':art: Reformat code'
fail-on-changes: 'false'