Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ActiveDirectoryDsc: Fix regex for bumping version #589

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,20 @@ 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)).

### 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

Expand Down
2 changes: 1 addition & 1 deletion GitVersion.yml
Original file line number Diff line number Diff line change
@@ -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}'
Expand Down
4 changes: 2 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ trigger:
include:
- master
paths:
exclude:
- CHANGELOG.md
include:
- source/*
tags:
include:
- "v*"
Expand Down