Skip to content

Commit ed0682b

Browse files
authored
Merge branch 'main' into dependabot/dotnet_sdk/main/dotnet-sdk-10.0.100
2 parents 9aea466 + 487b93a commit ed0682b

File tree

5 files changed

+30
-12
lines changed

5 files changed

+30
-12
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
persist-credentials: false
2828

2929
- name: "Setup .NET"
30-
uses: actions/[email protected].0
30+
uses: actions/[email protected].1
3131
with:
3232
global-json-file: 'global.json'
3333

.github/workflows/sonarcloud-and-mutations.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
run: echo "Stryker branch is '${{ env.STRYKER_BRANCH }}'"
6868

6969
- name: "Setup .NET"
70-
uses: actions/[email protected].0
70+
uses: actions/[email protected].1
7171
with:
7272
global-json-file: 'global.json'
7373

.github/workflows/tests.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
uses: actions/[email protected]
3838

3939
- name: "Setup .NET"
40-
uses: actions/[email protected].0
40+
uses: actions/[email protected].1
4141
with:
4242
global-json-file: 'global.json'
4343

@@ -111,5 +111,4 @@ jobs:
111111
if: always()
112112
with:
113113
check_name: "Test Summary"
114-
# NOTE: using trx_files instead of files due to https://github.com/EnricoMi/publish-unit-test-result-action/issues/424
115-
trx_files: "${{ github.workspace }}/${{ env.COVERAGE_REPORT_DIRECTORY }}/**/*.trx"
114+
files: "${{ github.workspace }}/${{ env.COVERAGE_REPORT_DIRECTORY }}/**/*.trx"

.github/workflows/vulnerability-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
uses: actions/[email protected]
2626

2727
- name: "Setup .NET"
28-
uses: actions/[email protected].0
28+
uses: actions/[email protected].1
2929
with:
3030
global-json-file: 'global.json'
3131

.releaserc

Lines changed: 25 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,37 @@
33

44
"plugins": [
55
["@semantic-release/commit-analyzer", {
6+
"preset": "angular",
67
"releaseRules": [
78
{ "type": "refactor", "release": "patch" },
8-
{ "type": "perf", "release": "patch" }
9-
]
9+
{ "type": "perf", "release": "patch" },
10+
{ "type": "feat", "release": "minor" },
11+
{ "type": "fix", "release": "patch" }
12+
],
13+
"parserOpts": {
14+
"noteKeywords": ["BREAKING CHANGE", "BREAKING CHANGES"]
15+
}
1016
}],
1117
["@semantic-release/release-notes-generator", {
18+
"preset": "angular",
1219
"presetConfig": {
1320
"types": [
21+
{ "type": "feat", "section": "Features", "hidden": false },
22+
{ "type": "fix", "section": "Bug Fixes", "hidden": false },
1423
{ "type": "refactor", "section": "Refactors", "hidden": false },
15-
{ "type": "perf", "section": "Performance Improvements", "hidden": false }
24+
{ "type": "perf", "section": "Performance Improvements", "hidden": false },
25+
{ "type": "docs", "section": "Documentation", "hidden": false },
26+
{ "type": "build", "section": "Bumps", "hidden": false },
27+
{ "type": "chore", "hidden": true },
28+
{ "type": "style", "hidden": true },
29+
{ "type": "test", "hidden": true }
1630
]
31+
},
32+
"parserOpts": {
33+
"noteKeywords": ["BREAKING CHANGE", "BREAKING CHANGES"]
34+
},
35+
"writerOpts": {
36+
"commitsSort": ["subject", "scope"]
1737
}
1838
}],
1939
["semantic-release-plugin-csproj", {
@@ -22,12 +42,11 @@
2242
"@semantic-release/changelog",
2343
"@semantic-release/github",
2444
["@semantic-release/git", {
25-
"path": "@semantic-release/git",
2645
"assets": [
2746
"CHANGELOG.md",
28-
"src/**.csproj"
47+
"src/**/*.csproj"
2948
],
30-
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
49+
"message": "chore(release): ${nextRelease.version} [skip ci]"
3150
}]
3251
]
3352
}

0 commit comments

Comments
 (0)