diff --git a/.github/workflows/clang-format.yml b/.github/workflows/format.yml similarity index 93% rename from .github/workflows/clang-format.yml rename to .github/workflows/format.yml index 88a3c897c..6d6d68887 100644 --- a/.github/workflows/clang-format.yml +++ b/.github/workflows/format.yml @@ -1,7 +1,7 @@ # DESCRIPTION: Github actions config # SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0 -name: clang-format +name: format on: push: @@ -38,6 +38,6 @@ jobs: - name: Push run: | if [ -n "$(git status --porcelain)" ]; then - git commit . -m "Apply clang-format" && + git commit . -m "Apply 'make format'" && git push origin fi