Create auto-clang-format.yml
This commit is contained in:
23
.github/workflows/auto-clang-format.yml
vendored
Normal file
23
.github/workflows/auto-clang-format.yml
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
name: auto-clang-format
|
||||
on: [pull_request]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: DoozyX/clang-format-lint-action@v0.13
|
||||
with:
|
||||
source: '.'
|
||||
exclude: './third_party ./external'
|
||||
extensions: 'h,cpp,hpp'
|
||||
clangFormatVersion: 13
|
||||
inplace: True
|
||||
- uses: EndBug/add-and-commit@v4
|
||||
with:
|
||||
author_name: Clang Robot
|
||||
author_email: robot@example.com
|
||||
message: ':art: Committing clang-format changes'
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
Reference in New Issue
Block a user