From ac19d552b1cfaf72efd30feb96ba2bb0ca72a059 Mon Sep 17 00:00:00 2001 From: Geza Lore Date: Wed, 9 Jun 2021 21:44:37 +0100 Subject: [PATCH] CI: Change name and commit message of formatting job The format job actually runs more than just clang-format these days. Change message to hint more directly towards what it does. Change job name to 'format'. --- .github/workflows/{clang-format.yml => format.yml} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename .github/workflows/{clang-format.yml => format.yml} (93%) 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