Skip to content

Commit

Permalink
Fix: sync-upstream yml 2차 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
minchodang committed Aug 6, 2024
1 parent 72bbd72 commit 61ef241
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions .github/workflows/sync-upstream.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

0 comments on commit 61ef241

Please sign in to comment.