From aec591a3339fc02c3298dddd2fb73e15c7a5dbaf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Valentin=20Breu=C3=9F?= Date: Sun, 3 May 2026 21:31:41 +0200 Subject: [PATCH] chore: align remaining aweXpect references in README and pipeline Follow-up to the SonarCloud and Stryker organization moves: updates the GitHub Build badge in the README and the Octokit calls in MutationTestDashboard so they target the Testably owner instead of relying on the GitHub redirect from aweXpect. --- Pipeline/Build.MutationTests.cs | 6 +++--- README.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Pipeline/Build.MutationTests.cs b/Pipeline/Build.MutationTests.cs index c499d45..7878aa0 100644 --- a/Pipeline/Build.MutationTests.cs +++ b/Pipeline/Build.MutationTests.cs @@ -167,7 +167,7 @@ await client.PutAsync($"https://dashboard.stryker-mutator.io/api/reports/github. Credentials tokenAuth = new(GithubToken); gitHubClient.Credentials = tokenAuth; IReadOnlyList comments = - await gitHubClient.Issue.Comment.GetAllForIssue("aweXpect", "aweXpect.Json", prId); + await gitHubClient.Issue.Comment.GetAllForIssue("Testably", "aweXpect.Json", prId); long? commentId = null; Log.Information($"Found {comments.Count} comments"); foreach (IssueComment comment in comments) @@ -182,12 +182,12 @@ await client.PutAsync($"https://dashboard.stryker-mutator.io/api/reports/github. if (commentId == null) { Log.Information($"Create comment:\n{body}"); - await gitHubClient.Issue.Comment.Create("aweXpect", "aweXpect.Json", prId, body); + await gitHubClient.Issue.Comment.Create("Testably", "aweXpect.Json", prId, body); } else { Log.Information($"Update comment:\n{body}"); - await gitHubClient.Issue.Comment.Update("aweXpect", "aweXpect.Json", commentId.Value, body); + await gitHubClient.Issue.Comment.Update("Testably", "aweXpect.Json", commentId.Value, body); } } } diff --git a/README.md b/README.md index a342c61..d0bd314 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # aweXpect.Json [![Nuget](https://img.shields.io/nuget/v/aweXpect.Json)](https://www.nuget.org/packages/aweXpect.Json) -[![Build](https://github.com/aweXpect/aweXpect.Json/actions/workflows/build.yml/badge.svg)](https://github.com/aweXpect/aweXpect.Json/actions/workflows/build.yml) +[![Build](https://github.com/Testably/aweXpect.Json/actions/workflows/build.yml/badge.svg)](https://github.com/Testably/aweXpect.Json/actions/workflows/build.yml) [![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=Testably_aweXpect.Json&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=Testably_aweXpect.Json) [![Coverage](https://sonarcloud.io/api/project_badges/measure?project=Testably_aweXpect.Json&metric=coverage)](https://sonarcloud.io/summary/overall?id=Testably_aweXpect.Json) [![Mutation testing badge](https://img.shields.io/endpoint?style=flat&url=https%3A%2F%2Fbadge-api.stryker-mutator.io%2Fgithub.com%2FTestably%2FaweXpect.Json%2Fmain)](https://dashboard.stryker-mutator.io/reports/github.com/Testably/aweXpect.Json/main)