-
Notifications
You must be signed in to change notification settings - Fork 2
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
1 parent
17fa9b4
commit 9341ceb
Showing
1 changed file
with
2 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 |
---|---|---|
|
@@ -62,18 +62,14 @@ jobs: | |
echo "result=Changes detected" >> $GITHUB_OUTPUT | ||
fi | ||
- name: Commit changes | ||
- name: Commit and Push changes | ||
if: steps.check-changes.outputs.result == 'Changes detected' | ||
run: | | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "GitHub Actions" | ||
git add . | ||
git commit -m "Update icons [skip ci]" | ||
- name: Push changes | ||
if: steps.check-changes.outputs.result == 'Changes detected' | ||
run: | | ||
git push origin ${{ github.head_ref }} | ||
git push | ||
- name: Comment on pull request | ||
if: steps.check-changes.outputs.result == 'Changes detected' | ||
|