Skip to content

Commit 1062493

Browse files
Update compare.yml
1 parent d1110f3 commit 1062493

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/compare.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
fork_url:
77
description: 'Fork URL to compare with'
88
required: true
9-
default: ''
9+
default: 'https://github.com/planetoftheorg/react-in-action-from-setup-to-deployment-5972102'
1010

1111
jobs:
1212
compare-fork:
@@ -33,7 +33,8 @@ jobs:
3333
FORK_BRANCH="main"
3434
FORK_OWNER=${{ env.fork_owner }}
3535
FORK_REPO=${{ env.fork_repo }}
36-
CHANGES=$(git diff $BASE_BRANCH...$FORK_OWNER/$FORK_REPO:$FORK_BRANCH --name-only)
36+
git fetch https://github.com/$FORK_OWNER/$FORK_REPO $FORK_BRANCH
37+
CHANGES=$(git diff $BASE_BRANCH...FETCH_HEAD --name-only)
3738
echo "changes=$CHANGES" >> $GITHUB_ENV
3839
3940
- name: Generate document using AI

0 commit comments

Comments
 (0)