@probot/adapter-azure-functions
Adapter to run a Probot application function in Azure Functions
Usage
Create your Probot Application as always
module.exports = (app) => {
app.on("issues.opened", async (context) => {
const params = context.issue({ body: "Hello World!" });
await context.octokit.issues.createComment(params);
});
};
Then create a folder with function.json
and index.js
, e.g.
{
"bindings": [
{
"authLevel": "Anonymous",
"type": "httpTrigger",
"direction": "in",
"name": "req",
"methods": ["post"]
},
{
"type": "http",
"direction": "out",
"name": "res"
}
]
}
and
const {
createAzureFunction,
createProbot,
} = require("@probot/adapter-azure-functions");
const app = require("../app");
module.exports = createAzureFunction(app, {
probot: createProbot(),
});
For an example Probot App continuously deployed to Azure Functions, see https://github.com/probot/example-azure-function/#how-it-works
How it works
@probot/adapter-azure-functions
exports everything that probot
does plus createAzureFunction
.
createAzureFunction
slightly differs from Probot's built-in createNodeMiddleware
, as an Azure function does receives slightly different parameters.
License
ISC