Skip to content

Commit ed19e4c

Browse files
Update compare.yml
1 parent dff132a commit ed19e4c

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.github/workflows/compare.yml

+10-4
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,14 @@ 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-
CHANGES=$(git diff $BASE_BRANCH...fork/$FORK_BRANCH --name-only)
39-
echo "changes=$CHANGES" >> $GITHUB_ENV
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
4046
4147
- name: Generate document using AI
4248
id: generate_document
@@ -45,11 +51,11 @@ jobs:
4551
run: |
4652
CHANGES=${{ env.changes }}
4753
PROMPT=$(cat <<-END
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 a project that might contain the changes.
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.
4955
5056
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.
5157
52-
At the end, add a short list of other suggestions, but don't show any code. Assume that the student is a beginner, Junior Developer, so make the changes simple and something a beginner might implement.
58+
At the end, add a short list of other suggestions, but don't show any code. Assume that the student is a beginner, Junior Developer, so make the changes simple and something a beginner might do.
5359
END
5460
)
5561
RESPONSE=$(curl -X POST "https://api.openai.com/v1/engines/davinci-codex/completions" \

0 commit comments

Comments
 (0)