diff --git a/Source/Testably.Server/Controllers/PullRequestStatusCheckController.cs b/Source/Testably.Server/Controllers/PullRequestStatusCheckController.cs index b4a6941..2477e9e 100644 --- a/Source/Testably.Server/Controllers/PullRequestStatusCheckController.cs +++ b/Source/Testably.Server/Controllers/PullRequestStatusCheckController.cs @@ -12,7 +12,7 @@ namespace Testably.Server.Controllers; [AllowAnonymous] public class PullRequestStatusCheckController : ControllerBase { - private static readonly string[] RepositoryOwners = ["Testably", "aweXpect"]; + private static readonly string[] RepositoryOwners = ["Testably", "aweXpect", "TestableIO"]; private const string SuccessMessage = "The PR title must conform to the conventional commits guideline."; @@ -71,6 +71,7 @@ public async Task OnPullRequestChanged( { "Testably" => _configuration.GetValue("testablyToken"), "aweXpect" => _configuration.GetValue("aweXpectToken"), + "TestableIO" => _configuration.GetValue("TestableIOToken"), _ => "" }; if (string.IsNullOrEmpty(bearerToken))