Skip to content

Commit

Permalink
Merge pull request #925 from DeveloperMetrics/AddingDependencyGroups
Browse files Browse the repository at this point in the history
Adding dependency groups
  • Loading branch information
samsmithnz authored Aug 30, 2023
2 parents f312be7 + 78635aa commit bc1089f
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 5 deletions.
18 changes: 18 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ updates:
open-pull-requests-limit: 10
assignees:
- "samsmithnz"
groups:
tests:
patterns: ["*"]
update-types: ["minor", "patch"]
- package-ecosystem: nuget
directory: "/src/DevOpsMetrics.Web"
schedule:
Expand All @@ -18,13 +22,21 @@ updates:
open-pull-requests-limit: 10
assignees:
- "samsmithnz"
groups:
web:
patterns: ["*"]
update-types: ["minor", "patch"]
- package-ecosystem: nuget
directory: "/src/DevOpsMetrics.FunctionalTests"
schedule:
interval: daily
time: "06:00"
timezone: America/New_York
open-pull-requests-limit: 10
groups:
functionalTests:
patterns: ["*"]
update-types: ["minor", "patch"]
assignees:
- "samsmithnz"
# - package-ecosystem: npm
Expand All @@ -41,6 +53,12 @@ updates:
directory: "/"
schedule:
interval: "daily"
time: "06:00"
timezone: America/New_York
open-pull-requests-limit: 10
assignees:
- "samsmithnz"
groups:
actions:
patterns: ["*"]
update-types: ["minor", "patch"]
4 changes: 2 additions & 2 deletions .github/workflows/dotnetcore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -257,8 +257,8 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
tag_name: ${{ needs.build.outputs.Version }}
release_name: Release ${{ needs.build.outputs.Version }}
tag_name: "v${{ needs.build.outputs.Version }}"
release_name: "v${{ needs.build.outputs.Version }}"


swapDeploymentSlots:
Expand Down
2 changes: 1 addition & 1 deletion GitVersion.yml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
next-version: 1.8.0
next-version: 1.9.0
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.2" />
<PackageReference Include="MSTest.TestAdapter" Version="3.1.1" />
<PackageReference Include="MSTest.TestFramework" Version="3.1.1" />
<PackageReference Include="coverlet.collector" Version="6.0.0">
Expand Down
2 changes: 1 addition & 1 deletion src/DevOpsMetrics.Tests/DevOpsMetrics.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<PackageReference Include="Microsoft.Extensions.Configuration" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.AzureKeyVault" Version="3.1.24" />
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="7.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.2" />
<PackageReference Include="MSTest.TestAdapter" Version="3.1.1" />
<PackageReference Include="MSTest.TestFramework" Version="3.1.1" />
<PackageReference Include="coverlet.collector" Version="6.0.0">
Expand Down

0 comments on commit bc1089f

Please sign in to comment.