Skip to content
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
1 change: 0 additions & 1 deletion .github/workflows/code-analysis-built-module.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ jobs:
shell: powershell
run: |
dotnet tool install --global GitVersion.Tool --version 5.*
dotnet-gitversion
- name: Run GitVersion
shell: powershell
run: |
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/code-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ jobs:
shell: powershell
run: |
dotnet tool install --global GitVersion.Tool --version 5.*
dotnet-gitversion
- name: Run GitVersion
shell: powershell
run: |
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/copilot-setup-steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -205,8 +205,6 @@ jobs:
- name: Verify GitVersion
shell: pwsh
run: |
Write-Host 'Running GitVersion to determine semantic version...'
dotnet-gitversion
Write-Host 'Running GitVersion to determine semantic version (parsing to PowerShell object)...'
dotnet-gitversion | ConvertFrom-Json

Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

- SqlServerDsc
- Updated GitVersion.yml feature branch regex pattern to use anchor `^f(eature(s)?)?[\/-]`
for more precise branch name matching.
- Refactored GitHub Copilot workflow setup to be module-agnostic via MODULE_NAME
environment variable, includes full-history detection, uses idempotent .NET
tool install, and adds Linux dependency handling ([issue #2127](https://github.com/dsccommunity/SqlServerDsc/issues/2127)).
Expand Down
2 changes: 1 addition & 1 deletion GitVersion.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ branches:
feature:
tag: useBranchName
increment: Minor
regex: f(eature(s)?)?[\/-]
regex: ^f(eature(s)?)?[\/-]
source-branches: ['master']
hotfix:
tag: fix
Expand Down
1 change: 0 additions & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ stages:
steps:
- pwsh: |
dotnet tool install --global GitVersion.Tool --version 5.*
dotnet-gitversion
$gitVersionObject = dotnet-gitversion | ConvertFrom-Json
$gitVersionObject.PSObject.Properties.ForEach{
Write-Host -Object "Setting Task Variable '$($_.Name)' with value '$($_.Value)'."
Expand Down
Loading