-
-
Notifications
You must be signed in to change notification settings - Fork 640
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
1 changed file
with
3 additions
and
3 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 |
---|---|---|
|
@@ -29,11 +29,11 @@ jobs: | |
mv ./preview.png review-images/${{ github.event.pull_request.number }}_${{ github.sha }}.png | ||
git config user.name "GitHub Actions" | ||
git config user.email "[email protected]" | ||
git checkout -b review-images | ||
git fetch origin | ||
git checkout -b review-images origin/review-images --no-track | ||
git add review-images/ | ||
git commit -m "Add generated review image" | ||
git config pull.rebase true | ||
git push origin review-images | ||
git push -u origin review-images | ||
- name: Post review in PR ✍️ | ||
uses: actions/github-script@v6 | ||
|