We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d1110f3 commit 1062493Copy full SHA for 1062493
.github/workflows/compare.yml
@@ -6,7 +6,7 @@ on:
6
fork_url:
7
description: 'Fork URL to compare with'
8
required: true
9
- default: ''
+ default: 'https://github.com/planetoftheorg/react-in-action-from-setup-to-deployment-5972102'
10
11
jobs:
12
compare-fork:
@@ -33,7 +33,8 @@ jobs:
33
FORK_BRANCH="main"
34
FORK_OWNER=${{ env.fork_owner }}
35
FORK_REPO=${{ env.fork_repo }}
36
- CHANGES=$(git diff $BASE_BRANCH...$FORK_OWNER/$FORK_REPO:$FORK_BRANCH --name-only)
+ git fetch https://github.com/$FORK_OWNER/$FORK_REPO $FORK_BRANCH
37
+ CHANGES=$(git diff $BASE_BRANCH...FETCH_HEAD --name-only)
38
echo "changes=$CHANGES" >> $GITHUB_ENV
39
40
- name: Generate document using AI
0 commit comments