diff --git a/.vscode/settings.json b/.vscode/settings.json index 93d9aae73..503b70247 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -32,7 +32,6 @@ "steppable" ], "[markdown]": { - "files.trimTrailingWhitespace": false, "files.encoding": "utf8" } } diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a0762317..796b4aa09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,18 @@ For older change log history see the [historic changelog](HISTORIC_CHANGELOG.md) ## [Unreleased] +### Changed + +- SqlServerDsc + - Azure Pipelines will no longer trigger on changes to just the CHANGELOG.md + (when merging to master). + - The deploy step is no longer run if the Azure DevOps organization URL + does not contain 'dsccommunity'. + - Changed the VS Code project settings to trim trailing whitespace for + markdown files too. + +## [13.3.0] - 2020-01-17 + ### Added - SqlServerDsc diff --git a/azure-pipelines.yml b/azure-pipelines.yml index bd56b5a98..71acb9e14 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -2,6 +2,9 @@ trigger: branches: include: - master + paths: + exclude: + - CHANGELOG.md tags: include: - "v*" @@ -244,7 +247,8 @@ stages: or( eq(variables['Build.SourceBranch'], 'refs/heads/master'), startsWith(variables['Build.SourceBranch'], 'refs/tags/') - ) + ), + contains(variables['System.TeamFoundationCollectionUri'], 'dsccommunity') ) jobs: - job: Deploy_Module