clang-format #28
This file contains hidden or 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: clang-format | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| commit_changes: | |
| # actions run ID | |
| description: 'Commit clang-format changes?' | |
| # Default value if no value is explicitly provided | |
| default: 'false' | |
| # Input has to be provided for the workflow to run | |
| required: false | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run clang-format lint | |
| uses: DoozyX/clang-format-lint-action@v0.17 | |
| with: | |
| source: './core ./extensions ./tests ./templates' | |
| exclude: './thidrparty ./extensions/fairygui ./extensions/scripting/lua-bindings/auto ./extensions/spine ./tests/fairygui-tests ./extensions/**/*_generated.h' | |
| extensions: 'h,cpp,c,mm' | |
| clangFormatVersion: 17 | |
| inplace: True | |
| - name: Commit clang-format changes | |
| if: ${{ github.event.inputs.commit_changes == 'true' }} | |
| uses: EndBug/add-and-commit@v9 | |
| with: | |
| committer_name: GitHub Actions | |
| committer_email: 41898282+github-actions[bot]@users.noreply.github.com | |
| message: 'Committing clang-format changes' | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |