Skip to content

Commit abd1f78

Browse files
authoredMar 27, 2025
Update compare.yml
1 parent ed19e4c commit abd1f78

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed
 

‎.github/workflows/compare.yml

+6-9
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,8 @@ jobs:
3535
FORK_REPO=${{ env.fork_repo }}
3636
git remote add fork https://github.com/$FORK_OWNER/$FORK_REPO.git
3737
git fetch fork $FORK_BRANCH
38-
# Check if there is a merge base
39-
if git merge-base --is-ancestor $BASE_BRANCH fork/$FORK_BRANCH; then
40-
CHANGES=$(git diff $BASE_BRANCH...fork/$FORK_BRANCH --name-only)
41-
echo "changes=$CHANGES" >> $GITHUB_ENV
42-
else
43-
echo "No common ancestor found between $BASE_BRANCH and fork/$FORK_BRANCH. Exiting..."
44-
exit 1
45-
fi
38+
CHANGES=$(git diff origin/$BASE_BRANCH...fork/$FORK_BRANCH --name-only)
39+
echo "changes=$CHANGES" >> $GITHUB_ENV
4640
4741
- name: Generate document using AI
4842
id: generate_document
@@ -51,7 +45,10 @@ jobs:
5145
run: |
5246
CHANGES=${{ env.changes }}
5347
PROMPT=$(cat <<-END
54-
Pretend the changes haven't been done and write a document that asks someone to make the changes as part of a capstone document. I don't need the actual changes, just the document describing what changes to make.
48+
Pretend the changes haven't been done and write a document that asks someone to make the changes as part of a capstone document. I don't need the actual changes, just the document describing what needs to be done.
49+
50+
Here are the changes:
51+
$CHANGES
5552
5653
I don't need the code. Just a summary of what sort of changes the student might make. Keep it short and make the explanations simple for a beginner audience.
5754

0 commit comments

Comments
 (0)