Skip to content

Commit e8b0703

Browse files
committed
Fix import
1 parent 8ac4099 commit e8b0703

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

now.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
// inlined from https://unpkg.com/@chadfawcett/[email protected]/index.js
22
const { createProbot } = require("probot");
3-
const { findPrivateKey } = require("probot/lib/private-key");
3+
const { findPrivateKey } = require("probot/lib/helpers/get-private-key");
44
const appFn = require("./").default;
55

66
const options = {
77
id: process.env.APP_ID,
88
secret: process.env.WEBHOOK_SECRET,
9-
cert: findPrivateKey()
9+
cert: findPrivateKey(),
1010
};
1111

1212
const probot = createProbot(options);

0 commit comments

Comments
 (0)