Updates for graphic overrides and item table (#712) #104
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: Code Linting On Push To Main and Development | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
- development | |
jobs: | |
auto-formatter-on-main: | |
name: Auto Format Code and Commit If Any Changes | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: DoozyX/[email protected] | |
with: | |
source: "./code ./source" | |
extensions: 'h,cpp,c,hpp' | |
clangFormatVersion: 14 | |
style: file | |
inplace: True | |
- uses: EndBug/[email protected] | |
with: | |
committer_name: GitHub Actions | |
committer_email: 41898282+github-actions[bot]@users.noreply.github.com | |
message: | | |
Run automatic format script as code does not match clang format rules. | |
Developers please rebase to avoid merge conflicts! | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |