summaryrefslogtreecommitdiffstats
path: root/.github/workflows/clang-format-fix.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/clang-format-fix.yml')
-rw-r--r--.github/workflows/clang-format-fix.yml15
1 files changed, 12 insertions, 3 deletions
diff --git a/.github/workflows/clang-format-fix.yml b/.github/workflows/clang-format-fix.yml
index c1110cf..feaa3d0 100644
--- a/.github/workflows/clang-format-fix.yml
+++ b/.github/workflows/clang-format-fix.yml
@@ -1,15 +1,24 @@
-name: clang-format Check
+# 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:
jobs:
formatting-check:
- name: Formatting Check
+ name: Commit Format Changes
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 C and Java programs.
+ - name: Fix C and Java formatting issues detected by clang-format
uses: DoozyX/clang-format-lint-action@v0.13
with:
source: '.'