summaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2023-03-14 07:57:38 (GMT)
committerGitHub <noreply@github.com>2023-03-14 07:57:38 (GMT)
commit469a93790e11d883d48506bda53ddf86b91cc129 (patch)
tree3e83dbc6e2c619c65bd1a787d226a57c7c4467f7 /.github/workflows
parent19a9b12eea932427261e505289fd8cbeb83f0417 (diff)
downloadhdf5-469a93790e11d883d48506bda53ddf86b91cc129.zip
hdf5-469a93790e11d883d48506bda53ddf86b91cc129.tar.gz
hdf5-469a93790e11d883d48506bda53ddf86b91cc129.tar.bz2
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.
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/clang-format-check.yml2
-rw-r--r--.github/workflows/clang-format-fix.yml6
2 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/clang-format-check.yml b/.github/workflows/clang-format-check.yml
index e8251f2..70809a1 100644
--- a/.github/workflows/clang-format-check.yml
+++ b/.github/workflows/clang-format-check.yml
@@ -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: '.'
diff --git a/.github/workflows/clang-format-fix.yml b/.github/workflows/clang-format-fix.yml
index c1110cf..bb4d685 100644
--- a/.github/workflows/clang-format-fix.yml
+++ b/.github/workflows/clang-format-fix.yml
@@ -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: '.'