diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index 4ecef42d..c7414545 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -37,6 +37,12 @@ "commands": [ "nuke" ] + }, + "gitreleasemanager.tool": { + "version": "0.8.0", + "commands": [ + "dotnet-gitreleasemanager" + ] } } } \ No newline at end of file diff --git a/.gitignore b/.gitignore index d02c63b6..020d10d4 100644 --- a/.gitignore +++ b/.gitignore @@ -201,3 +201,5 @@ project.lock.json /tools/*.md5sum !tools/packages.config *.pubxml + +codealike.json diff --git a/GitReleaseManager.yaml b/GitReleaseManager.yaml new file mode 100644 index 00000000..25ca281f --- /dev/null +++ b/GitReleaseManager.yaml @@ -0,0 +1,22 @@ +# create: +# include-footer: false +# footer-heading: '' +# footer-content: '' +# footer-includes-milestone: true +export: + include-created-date-in-title: true +issue-labels-include: + - ":boom: breaking change" + - ":rocket: feature" + - ":fire: enhancement" + - ":blue_book: documentation" + - ":beetle: bug" + - ":squirrel: chore" + - ":raised_hand: good first issue" + - ":raised_hand: help wanted" + - ":sparkles: mysterious" +issue-labels-exclude: + - ":x: invalid" + - ":grey_question: question" + - ":lock: wontfix" + - ":family: duplicate" diff --git a/Packages.props b/Packages.props index 2323fd26..bfa9150d 100644 --- a/Packages.props +++ b/Packages.props @@ -1,16 +1,16 @@  - + - - + + - - - + + + @@ -33,9 +33,9 @@ - + - + diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 825848c4..a9813d4e 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -14,25 +14,31 @@ resources: - repository: rsg type: github name: RocketSurgeonsGuild/AzureDevopsTemplates - ref: refs/tags/v0.6.0 + ref: refs/tags/v0.7.8 endpoint: github variables: - CONFIGURATION: Release - VERBOSITY: Normal - DOTNETVERSION: "2.2.300" - DOTNET3VERSION: "3.0.100-preview6-012264" - NUGETVERSION: "5.1.0" - COVERAGE: "$(Agent.BuildDirectory)/c" - ARTIFACTS: $(Build.ArtifactStagingDirectory) - DOTNET_SKIP_FIRST_TIME_EXPERIENCE: "true" - CodeCovToken: '06571f89-ce59-412c-9d5d-53b968dba772' + - group: rsg-bot + - name: CONFIGURATION + value: Release + - name: VERBOSITY + value: Normal + - name: COVERAGE + value: "$(Agent.BuildDirectory)/c" + - name: ARTIFACTS + value: $(Build.ArtifactStagingDirectory) + - name: DOTNET_SKIP_FIRST_TIME_EXPERIENCE + value: "true" + - name: CodeCovToken + value: '06571f89-ce59-412c-9d5d-53b968dba772' jobs: - template: pipeline/nuke.yml@rsg parameters: Configuration: $(Configuration) Verbosity: $(Verbosity) - DotNetVersion: $(DotNetVersion) - DotNet3Version: $(DotNet3Version) - NuGetVersion: $(NuGetVersion) + GitHub: true + GitHubPackages: false + DotNetVersion: "2.2.300" + DotNet3Version: "3.0.100-preview6-012264" + NuGetVersion: "5.1.0"