-
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
72bbd72
commit 61ef241
Showing
1 changed file
with
11 additions
and
8 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 |
---|---|---|
|
@@ -33,12 +33,15 @@ jobs: | |
git checkout main | ||
git merge upstream/main --no-commit --no-ff | ||
- name: Configure git | ||
run: | | ||
cd fork | ||
git config user.name "minchodang" | ||
git config user.email "[email protected]" | ||
- name: Create Pull Request | ||
uses: peter-evans/create-pull-request@v3 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
commit-message: 'Sync with upstream' | ||
branch: sync-upstream | ||
base: main | ||
title: 'Sync with upstream' | ||
body: 'This PR syncs the fork with upstream repository' | ||
run: | | ||
cd fork | ||
gh pr create --title 'Sync with upstream' --body 'This PR syncs the fork with upstream repository' --base main --head sync-upstream | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |