-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathgithub.ts
47 lines (42 loc) · 1.36 KB
/
github.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import { TriggerClient, cronTrigger, eventTrigger } from "@trigger.dev/sdk";
import { Octokit } from "octokit";
import z from "zod";
// hide-code
const client = new TriggerClient({ id: "api-reference" });
// end-hide-code
// Create a personal access token at https://github.com/settings/tokens/new?scopes=repo
const octokit = new Octokit({ auth: process.env.GITHUB_TOKEN });
// Using Octokit, the official GitHub SDK; https://github.com/octokit/octokit.js
client.defineJob({
id: "get-github-repo",
name: "Get GitHub repo",
version: "1.0.0",
trigger: eventTrigger({
name: "github",
schema: z.object({
owner: z.string(),
repo: z.string(),
}),
}),
run: async (payload, io, ctx) => {
// Wrap an SDK call in io.runTask so it's resumable and displays in logs
const repo = await io.runTask(
"Get repo",
async () => {
// This is the regular GitHub SDK
const response = await octokit.rest.repos.get({
owner: payload.owner,
repo: payload.repo,
});
return response.data;
},
// Add metadata to improve how the task displays in the logs
{ name: "Get repo", icon: "github" }
);
},
});
// hide-code
// These lines can be removed if you don't want to use express
import { createExpressServer } from "@trigger.dev/express";
createExpressServer(client);
// end-hide-code