From ac8f4e14031b3e0802fd378594aed4da0bd89d74 Mon Sep 17 00:00:00 2001 From: Whisker17 Date: Thu, 27 Jul 2023 21:48:26 +0800 Subject: [PATCH] prettier test --- .github/workflows/prettier_format.yml | 31 +++++++++++++++++++++------ evaluations/AdMeta_1_0xCaso.md | 2 ++ 2 files changed, 27 insertions(+), 6 deletions(-) diff --git a/.github/workflows/prettier_format.yml b/.github/workflows/prettier_format.yml index 408437f418..b297b37d89 100644 --- a/.github/workflows/prettier_format.yml +++ b/.github/workflows/prettier_format.yml @@ -10,24 +10,43 @@ jobs: runs-on: ubuntu-latest steps: - - name: Check Out Repository + - name: Full Clone Repository uses: actions/checkout@v2 + with: + fetch-depth: 0 - name: Install Prettier run: npm install prettier --global - - name: Format Files + - name: Get Previous Commit + id: previous-commit run: | - prettier --write . + previous_commit=$(git log --skip 1 -n 1 --pretty=format:"%H") + echo "PREVIOUS_COMMIT=$previous_commit" >> $GITHUB_ENV + + - name: Get Modified Files + id: modified-files + run: | + previous_commit=${{ env.PREVIOUS_COMMIT }} + modified_files=$(git diff --name-only $previous_commit ${{ github.sha }}) + echo "MODIFIED_FILES=\"$modified_files\"" >> $GITHUB_ENV + + + - name: Format Modified Files + if: ${{ env.MODIFIED_FILES != '' }} + run: | + modified_files=${{ env.MODIFIED_FILES }} + prettier --write $modified_files - name: Commit Changes + if: ${{ env.MODIFIED_FILES != '' }} run: | git config --global user.name "Whisker17" git config --global user.email "demiwhisker@gmail.com" - git add . - git commit -m "Auto-format code with Prettier [skip ci]" + git commit -m "Auto-format code with Prettier [skip ci]" --amend --no-edit - name: Push Changes + if: ${{ env.MODIFIED_FILES != '' }} run: | branch_name=${{ github.ref }} - git push origin $branch_name \ No newline at end of file + git push origin $branch_name --force-with-lease diff --git a/evaluations/AdMeta_1_0xCaso.md b/evaluations/AdMeta_1_0xCaso.md index 05561f048d..fc44588af9 100644 --- a/evaluations/AdMeta_1_0xCaso.md +++ b/evaluations/AdMeta_1_0xCaso.md @@ -1,5 +1,7 @@ # Evaluation + + - **Status:** Accepted - **Application Document:** https://github.com/w3f/Grants-Program/blob/master/applications/AdMeta.md - **Milestone:** 1