Octokit.Webhooks.AspNetCore 2.2.0

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Octokit.Webhooks.AspNetCore --version 2.2.0                
NuGet\Install-Package Octokit.Webhooks.AspNetCore -Version 2.2.0                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Octokit.Webhooks.AspNetCore" Version="2.2.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Octokit.Webhooks.AspNetCore --version 2.2.0                
#r "nuget: Octokit.Webhooks.AspNetCore, 2.2.0"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Octokit.Webhooks.AspNetCore as a Cake Addin
#addin nuget:?package=Octokit.Webhooks.AspNetCore&version=2.2.0

// Install Octokit.Webhooks.AspNetCore as a Cake Tool
#tool nuget:?package=Octokit.Webhooks.AspNetCore&version=2.2.0                

Octokit.Webhooks

GitHub Workflow Status Octokit.Webhooks NuGet Package Version Octokit.Webhooks NuGet Package Downloads

Libraries to handle GitHub Webhooks in .NET applications.

Usage

ASP.NET Core

  1. dotnet add package Octokit.Webhooks.AspNetCore

  2. Create a class that derives from WebhookEventProcessor and override any of the virtual methods to handle webhooks from GitHub. For example, to handle Pull Request webhooks:

    public sealed class MyWebhookEventProcessor : WebhookEventProcessor
    {
        protected override Task ProcessPullRequestWebhookAsync(WebhookHeaders headers, PullRequestEvent pullRequestEvent, PullRequestAction action) {
            ...
        }
    }
    
  3. Register your implementation of WebhookEventProcessor:

    builder.Services.AddSingleton<WebhookEventProcessor, MyWebhookEventProcessor>();
    
  4. Map the webhook endpoint:

    app.UseEndpoints(endpoints =>
    {
        ...
        endpoints.MapGitHubWebhooks();
        ...
    });
    

MapGitHubWebhooks() takes two optional parameters:

  • path. Defaults to /api/github/webhooks, the URL of the endpoint to use for GitHub.
  • secret. The secret you have configured in GitHub, if you have set this up.

Azure Functions

NOTE: Support is only provided for isolated process Azure Functions.

  1. dotnet add package Octokit.Webhooks.AzureFunctions

  2. Create a class that derives from WebhookEventProcessor and override any of the virtual methods to handle webhooks from GitHub. For example, to handle Pull Request webhooks:

    public sealed class MyWebhookEventProcessor : WebhookEventProcessor
    {
        protected override Task ProcessPullRequestWebhookAsync(WebhookHeaders headers, PullRequestEvent pullRequestEvent, PullRequestAction action) {
            ...
        }
    }
    
  3. Register your implementation of WebhookEventProcessor:

    .ConfigureServices(collection =>
    {
        ...
        collection.AddSingleton<WebhookEventProcessor, MyWebhookEventProcessor>();
        ...
    })
    
  4. Configure the webhook function:

    new HostBuilder()
    ...
    .ConfigureGitHubWebhooks()
    ...
    .Build();
    

ConfigureGitHubWebhooks() takes one optional parameter:

  • secret. The secret you have configured in GitHub, if you have set this up.

The function is available on the /api/github/webhooks endpoint.

Thanks

License

All packages in this repository are licensed under the MIT license.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Octokit.Webhooks.AspNetCore:

Package Downloads
MintPlayer.SlingBot

Build a Github Bot

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Octokit.Webhooks.AspNetCore:

Repository Stars
microsoft/project-oagents
Experimental AI Agents Framework
Version Downloads Last updated
2.2.3 4,818 7/31/2024
2.2.2 3,368 6/27/2024
2.2.1 5,865 5/9/2024
2.2.0 533 5/6/2024
2.1.1 6,233 2/29/2024
2.1.0 4,915 12/19/2023
2.0.6 5,289 11/12/2023
2.0.5 1,990 10/26/2023
2.0.4 1,612 10/12/2023
2.0.3 6,173 8/25/2023
2.0.2 1,724 8/16/2023
2.0.1 2,433 6/13/2023
2.0.0 314 6/9/2023
1.5.2 3,229 6/1/2023
1.5.1 1,420 4/27/2023
1.5.0 368 4/25/2023
1.4.1 568 4/11/2023
1.4.0 211 4/6/2023
1.3.5 13,899 10/13/2022
1.3.4 313 10/5/2022
1.3.3 8,445 8/11/2022
1.3.2 199 8/9/2022
1.3.1 896 7/20/2022
1.3.0 160 7/19/2022
1.2.1 3,691 7/7/2022
1.2.0 183 7/7/2022
1.1.1 766 6/27/2022
1.1.0 345 6/13/2022
1.0.0 1,625 5/13/2022
0.6.5 530 4/27/2022
0.6.4 331 4/13/2022
0.6.3 2,172 3/31/2022
0.6.2 264 3/26/2022
0.6.1 197 3/25/2022
0.6.0 258 2/2/2022
0.5.0 725 1/24/2022
0.4.0 519 1/13/2022
0.3.0 5,983 11/23/2021
0.2.0 191 10/29/2021
0.1.2 261 9/27/2021
0.1.1 559 9/21/2021