goldendict-ng/.github/workflows/auto clang format.yml
YiFang Xiao 5577948580 action: clang format
when others submit PR ,it always fails
2023-05-21 20:13:37 +08:00

47 lines
1.3 KiB
YAML

name: "auto clang-format code"
on:
pull_request:
branches:
# - dev
# - master
- staged
paths-ignore:
- "docs/**"
# - ".github/**"
- "howto/**"
- "*.md"
- "locale/**"
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.5.2
with:
# check out HEAD on the branch
ref: ${{ github.head_ref }}
# make sure the parent commit is grabbed as well, because
# that's what will get formatted (i.e. the most recent commit)
fetch-depth: 2
# format the latest commit
- name: ubuntu install clang-format
run: |
sudo apt-get install git lsb-release wget software-properties-common
wget -qO - https://apt.llvm.org/llvm.sh| sudo bash
sudo apt-get update
sudo apt-get install -y clang-format
git-clang-format --style=file HEAD^
git diff --staged
# commit the changes (if there are any)
# - name: Commit changes
# uses: stefanzweifel/git-auto-commit-action@v4.1.2
# with:
# commit_message: 🎨 apply clang-format changes
# branch: ${{ github.head_ref }}
- uses: EndBug/add-and-commit@v9
with:
default_author: github_actions
message: 🎨 apply clang-format changes