diff --git a/CHANGELOG.md b/CHANGELOG.md index 789dedf4c..021e6d33d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,11 @@ For older change log history see the [historic changelog](HISTORIC_CHANGELOG.md) ### Fixed +- ActiveDirectoryDsc + - The regular expression for `minor-version-bump-message` in the file + `GitVersion.yml` was changed to only raise minor version when the + commit message contain the word `add`, `adds`, `minor`, `feature`, + or `features` ([issue #588](https://github.com/dsccommunity/ActiveDirectoryDsc/issues/588)). - ADDomain - Added additional Get-ADDomain retry exceptions ([issue #581](https://github.com/dsccommunity/ActiveDirectoryDsc/issues/581)). @@ -16,8 +21,8 @@ For older change log history see the [historic changelog](HISTORIC_CHANGELOG.md) ### Changed - ActiveDirectoryDsc - - When merging a commit with changes only to CHANGELOG.md the CI pipeline - will not run. + - Only run CI pipeline on branch `master` when there are changes to files + inside the `source` folder. ### Fixed diff --git a/GitVersion.yml b/GitVersion.yml index 044aebb2d..4d5e366fb 100644 --- a/GitVersion.yml +++ b/GitVersion.yml @@ -1,7 +1,7 @@ mode: ContinuousDelivery next-version: 5.0.0 major-version-bump-message: '\s?(breaking|major|breaking\schange)' -minor-version-bump-message: '\s?(add|feature|minor)' +minor-version-bump-message: '(adds?|features?|minor)\b' patch-version-bump-message: '\s?(fix|patch)' no-bump-message: '\+semver:\s?(none|skip)' assembly-informational-format: '{NuGetVersionV2}+Sha.{Sha}.Date.{CommitDate}' diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 7d8e3bec3..29c74963a 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -3,8 +3,8 @@ trigger: include: - master paths: - exclude: - - CHANGELOG.md + include: + - source/* tags: include: - "v*"