From 9f67171cc73b5feb18e2f3e70f59ade7da68a9bc Mon Sep 17 00:00:00 2001 From: Johan Ljunggren Date: Mon, 11 Sep 2023 12:49:51 +0200 Subject: [PATCH] SqlServerDsc: Add CODEOWNERS file (#1971) - SqlServerDsc - CODEOWNERS file was added to support automatically set reviewer. --- .github/CODEOWNERS | 9 +++++++++ .vscode/settings.json | 5 ++++- CHANGELOG.md | 1 + 3 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 .github/CODEOWNERS diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 000000000..2330a87e1 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,9 @@ +# cSpell: ignore sqlserverdsc +# Each line is a file pattern followed by one or more owners. + +# These owners will be the default owners for everything in +# the repo. Unless a later match takes precedence, +# @dsccommunity/sqlserverdsc will be requested for review when +# someone opens a pull request. +* @dsccommunity/sqlserverdsc +/* @johlju diff --git a/.vscode/settings.json b/.vscode/settings.json index f79c57a39..a4f6fdefe 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -108,5 +108,8 @@ "pester.runTestsInNewProcess": true, "pester.pesterModulePath": "./output/RequiredModules/Pester", "powershell.pester.codeLens": true, - "pester.suppressCodeLensNotice": true + "pester.suppressCodeLensNotice": true, + "markdownlint.ignore": [ + ".github/CODEOWNERS" + ] } diff --git a/CHANGELOG.md b/CHANGELOG.md index 27836fc00..8163345ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ([issue #1965](https://github.com/dsccommunity/SqlServerDsc/issues/1965)). - Now package the Wiki content and adds it as a GitHub Release asset so it is simpler to get the documentation for a specific version. + - CODEOWNERS file was added to support automatically set reviewer. - New private command: - Get-SMOModuleCalculatedVersion - Returns the version of the SMO module as a string. SQLPS version 120 and 130 do not have the correct version set,