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 8ac4099 commit e8b0703Copy full SHA for e8b0703
now.js
@@ -1,12 +1,12 @@
1
// inlined from https://unpkg.com/@chadfawcett/[email protected]/index.js
2
const { createProbot } = require("probot");
3
-const { findPrivateKey } = require("probot/lib/private-key");
+const { findPrivateKey } = require("probot/lib/helpers/get-private-key");
4
const appFn = require("./").default;
5
6
const options = {
7
id: process.env.APP_ID,
8
secret: process.env.WEBHOOK_SECRET,
9
- cert: findPrivateKey()
+ cert: findPrivateKey(),
10
};
11
12
const probot = createProbot(options);
0 commit comments