forked from w3f/Grant-Milestone-Delivery
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
31 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,24 +10,47 @@ 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.txt | ||
- name: Read Modified Files | ||
id: read-modified-files | ||
run: | | ||
echo "MODIFIED_FILES=$(cat modified_files.txt)" >> $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 "[email protected]" | ||
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 | ||
git push origin $branch_name --force-with-lease |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters