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'.
This commit is contained in:
Geza Lore 2021-06-09 21:44:37 +01:00
parent 58b4ed0995
commit ac19d552b1

View File

@ -1,7 +1,7 @@
# DESCRIPTION: Github actions config # DESCRIPTION: Github actions config
# SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0 # SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0
name: clang-format name: format
on: on:
push: push:
@ -38,6 +38,6 @@ jobs:
- name: Push - name: Push
run: | run: |
if [ -n "$(git status --porcelain)" ]; then if [ -n "$(git status --porcelain)" ]; then
git commit . -m "Apply clang-format" && git commit . -m "Apply 'make format'" &&
git push origin git push origin
fi fi