Merge pull request #322 from Mr-Auto/formatting #1909
This file contains 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 Lint | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
workflow_dispatch: | |
inputs: | |
do_formatting: | |
description: "Run clang-format inplace formatting and commit the result" | |
required: true | |
default: "false" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: DoozyX/[email protected] | |
if: ${{ github.event_name != 'workflow_dispatch' || github.event.inputs.do_formatting != 'true' }} | |
with: | |
source: "src" | |
extensions: "inl,h,hpp,cpp" | |
exclude: "./src/game_api/lua_libs" | |
clangFormatVersion: 16 | |
- uses: DoozyX/[email protected] | |
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.do_formatting == 'true' }} | |
with: | |
source: "src" | |
extensions: "inl,h,hpp,cpp" | |
exclude: "./src/game_api/lua_libs" | |
clangFormatVersion: 16 | |
inplace: true | |
- uses: EndBug/add-and-commit@v4 | |
if: ${{ success() && github.event_name == 'workflow_dispatch' && github.event.inputs.do_formatting == 'true' }} | |
with: | |
author_name: Clang-Format Bot | |
author_email: [email protected] | |
message: "Automated clang-format changes" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |