You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
echo "No common ancestor found between $BASE_BRANCH and fork/$FORK_BRANCH. Exiting..."
44
+
exit 1
45
+
fi
40
46
41
47
- name: Generate document using AI
42
48
id: generate_document
@@ -45,11 +51,11 @@ jobs:
45
51
run: |
46
52
CHANGES=${{ env.changes }}
47
53
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.
49
55
50
56
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.
51
57
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.
53
59
END
54
60
)
55
61
RESPONSE=$(curl -X POST "https://api.openai.com/v1/engines/davinci-codex/completions" \
0 commit comments