Skip to content

Commit

Permalink
Merge ad8cf30 into 0e6425b
Browse files Browse the repository at this point in the history
  • Loading branch information
samsmithnz committed May 22, 2023
2 parents 0e6425b + ad8cf30 commit 055de4a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public DevOpsMetricServiceApi(string devOpsServiceURL)
public async Task<DORASummaryItem?> GetDORASummaryItems(string owner, string repository)
{
// api/DORASummary/GetDORASummaryItems?owner=samsmithnz&repository=DevOpsMetrics
string url = $"/api/DORASummary/GetDORASummaryItems?owner={owner}&repository={repository}";
string url = $"/api/DORASummary/GetDORASummaryItem?owner={owner}&repository={repository}";
return await BaseApi.GetResponse<DORASummaryItem>(Client, url);
}

Expand Down
4 changes: 2 additions & 2 deletions src/RepoGovernance.Tests/RepoGovernance.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="coverlet.msbuild" Version="3.2.0">
<PackageReference Include="coverlet.msbuild" Version="6.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="7.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.6.0" />
<PackageReference Include="MSTest.TestAdapter" Version="3.0.2" />
<PackageReference Include="MSTest.TestFramework" Version="3.0.2" />
<PackageReference Include="coverlet.collector" Version="3.2.0">
<PackageReference Include="coverlet.collector" Version="6.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
2 changes: 1 addition & 1 deletion src/RepoGovernance.Web/Views/Home/Index.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
<div class="col-md-5">
<div>
<a id="@item.Repo"></a>
<a href="https://github.com/samsmithnz/@item.Repo" target="_blank" class="projectHeader">@item.Repo</a> <span class="publicPrivateLabel">&nbsp;&nbsp;@visibility&nbsp;&nbsp;</span><br>
<a href="https://github.com/@item.Owner/@item.Repo" target="_blank" class="projectHeader">@item.Repo</a> <span class="publicPrivateLabel">&nbsp;&nbsp;@visibility&nbsp;&nbsp;</span><br>
<span class="descriptionText">@item.RepoSettings.description</span><br>
</div>
<div>
Expand Down

0 comments on commit 055de4a

Please sign in to comment.