We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1062493 commit dff132aCopy full SHA for dff132a
.github/workflows/compare.yml
@@ -33,8 +33,9 @@ jobs:
33
FORK_BRANCH="main"
34
FORK_OWNER=${{ env.fork_owner }}
35
FORK_REPO=${{ env.fork_repo }}
36
- git fetch https://github.com/$FORK_OWNER/$FORK_REPO $FORK_BRANCH
37
- CHANGES=$(git diff $BASE_BRANCH...FETCH_HEAD --name-only)
+ git remote add fork https://github.com/$FORK_OWNER/$FORK_REPO.git
+ git fetch fork $FORK_BRANCH
38
+ CHANGES=$(git diff $BASE_BRANCH...fork/$FORK_BRANCH --name-only)
39
echo "changes=$CHANGES" >> $GITHUB_ENV
40
41
- name: Generate document using AI
0 commit comments