Skip to content

Commit

Permalink
Add format actiona
Browse files Browse the repository at this point in the history
  • Loading branch information
byrnHDF committed Nov 27, 2023
1 parent 654830f commit d0b3c32
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/clang-format-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: clang-format Check
on:
pull_request:
permissions:
contents: read
jobs:
formatting-check:
name: Formatting Check
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'skip-ci')"
steps:
- uses: actions/checkout@v3
- name: Run clang-format style check for Java code
uses: DoozyX/[email protected]
with:
source: '.'
extensions: 'java'
clangFormatVersion: 13
style: file
include: './src ./test'
38 changes: 38 additions & 0 deletions .github/workflows/clang-format-fix.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# NOTE: This action requires write permissions to be set in your GitHub
# repo/fork for it to be able to commit changes.
#
# This is currently enabled via:
#
# settings > Actions > General > Workflow permissions
#
# which you will need to set to "Read and write permissions"
#
name: clang-format Commit Changes
on:
workflow_dispatch:
push:
permissions:
contents: read
jobs:
formatting-check:
name: Commit Format Changes
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'skip-ci')"
permissions:
contents: write # In order to allow EndBug/add-and-commit to commit changes
steps:
- uses: actions/checkout@v3
- name: Fix Java formatting issues detected by clang-format
uses: DoozyX/[email protected]
with:
source: '.'
extensions: 'java'
clangFormatVersion: 13
inplace: True
style: file
include: './src ./test'
- uses: EndBug/add-and-commit@v9
with:
author_name: github-actions
author_email: 41898282+github-actions[bot]@users.noreply.github.com
message: 'Committing clang-format changes'

0 comments on commit d0b3c32

Please sign in to comment.