From 9c9744d1d3f89b98fd7767146ff9f8d631a2bca0 Mon Sep 17 00:00:00 2001 From: Krishna Vedala <7001608+kvedala@users.noreply.github.com> Date: Fri, 29 May 2020 16:22:12 -0400 Subject: [PATCH] remove echo, added github commit of formatted files --- .github/workflows/clang-format.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/clang-format.yml b/.github/workflows/clang-format.yml index d332ed50..edc546dd 100644 --- a/.github/workflows/clang-format.yml +++ b/.github/workflows/clang-format.yml @@ -21,7 +21,6 @@ jobs: run: | for fname in $(find . -name '*.c' -o -name '*.h') do - echo "$fname" clang-format --verbose -i --style="$line1 $line2 $line3 $line4" "$fname" done env: @@ -29,7 +28,12 @@ jobs: line2: "IndentWidth: 4, TabWidth: 4, BreakBeforeBraces: Allman," line3: "AllowShortIfStatementsOnASingleLine: false, IndentCaseLabels: false," line4: "ColumnLimit: 80, AccessModifierOffset: -4 }" - - name: test - if: always() - run: git status + - name: Commit files + run: | + cp -rp ./build/html/* . && rm -rf ./build && ls -lah + git config --global user.name github-actions + git config --global user.email '${GITHUB_ACTOR}@users.noreply.github.com' + git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY + git commit -am "formatting source-code for $GITHUB_SHA" || true + git push