Skip to content
This repository has been archived by the owner on Oct 21, 2023. It is now read-only.

Commit

Permalink
Try to fix
Browse files Browse the repository at this point in the history
  • Loading branch information
koppor committed Jun 13, 2023
1 parent e733337 commit 09dec4e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/sync-fork.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Checkout target repo
uses: actions/checkout@v3
with:
ref: jdk21-fix-8240567
ref: master
fetch-depth: '0'

- name: Sync upstream changes
Expand All @@ -24,8 +24,11 @@ jobs:
git config --local user.name "GitHub Actions"
git remote add upstream https://github.com/openjdk/jdk21.git
git fetch upstream
git checkout master
git merge upstream/master
git push
git checkout master
git checkout jdk21-fix-8240567
git fetch upstream
git merge upstream/master
git push

0 comments on commit 09dec4e

Please sign in to comment.