Skip to content

Commit 830b87e

Browse files
authored
feat: support "TestableIO" organisation (#14)
1 parent edc322b commit 830b87e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Source/Testably.Server/Controllers/PullRequestStatusCheckController.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ namespace Testably.Server.Controllers;
1212
[AllowAnonymous]
1313
public class PullRequestStatusCheckController : ControllerBase
1414
{
15-
private static readonly string[] RepositoryOwners = ["Testably", "aweXpect"];
15+
private static readonly string[] RepositoryOwners = ["Testably", "aweXpect", "TestableIO"];
1616

1717
private const string SuccessMessage =
1818
"The PR title must conform to the conventional commits guideline.";
@@ -71,6 +71,7 @@ public async Task<IActionResult> OnPullRequestChanged(
7171
{
7272
"Testably" => _configuration.GetValue<string>("testablyToken"),
7373
"aweXpect" => _configuration.GetValue<string>("aweXpectToken"),
74+
"TestableIO" => _configuration.GetValue<string>("TestableIOToken"),
7475
_ => ""
7576
};
7677
if (string.IsNullOrEmpty(bearerToken))

0 commit comments

Comments
 (0)