We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c329de commit c45ae8aCopy full SHA for c45ae8a
github/index.ts
@@ -130,7 +130,6 @@ let exitCode = 0
130
type PromptFiles = Awaited<ReturnType<typeof getUserPrompt>>["promptFiles"]
131
132
assertContextEvent("issue_comment")
133
-throw new Error("Not implemented")
134
135
try {
136
accessToken = await getAccessToken()
@@ -230,6 +229,8 @@ process.exit(exitCode)
230
229
231
function assertContextEvent(...events: string[]) {
232
const context = useContext()
+ // TODO
233
+ console.log(context)
234
if (events.includes(context.eventName)) {
235
core.setFailed(`Unsupported event type: ${context.eventName}`)
236
process.exit(1)
0 commit comments