Rename clang-format fix action (#2550)

The clang-format fix and check actions have the same name. This
also makes some small changes to the action's text fields.
This commit is contained in:
Dana Robinson 2023-03-14 00:57:38 -07:00 committed by GitHub
parent 19a9b12eea
commit 469a93790e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -8,7 +8,7 @@ jobs:
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: Run clang-format style check for C and Java code
uses: DoozyX/clang-format-lint-action@v0.13
with:
source: '.'

View File

@ -1,15 +1,15 @@
name: clang-format Check
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: '.'