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.
webhooks
README.md
1 parent 21610ac commit 0ac1661Copy full SHA for 0ac1661
README.md
@@ -17,7 +17,7 @@ const {
17
createProbot,
18
} = require("@probot/adapter-aws-lambda-serverless");
19
const appFn = require("./");
20
-module.exports.webhooks = createLambdaFunction(appFn, {
+module.exports.lambdaFn = createLambdaFunction(appFn, {
21
probot: createProbot(),
22
});
23
```
@@ -39,8 +39,8 @@ provider:
39
LOG_LEVEL: debug
40
41
functions:
42
- webhooks:
43
- handler: handler.webhooks
+ probot:
+ handler: handler.lambdaFn
44
events:
45
- httpApi:
46
path: /api/github/webhooks
0 commit comments