Skip to content

Commit 23d7684

Browse files
authored
SqlServerDsc: Fix issue template (#2039)
1 parent 00c2341 commit 23d7684

File tree

6 files changed

+7
-4
lines changed

6 files changed

+7
-4
lines changed

.github/ISSUE_TEMPLATE/05_problem_with_command.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ body:
6767
6868
To help with this information:
6969
- On a Linux distribution, please provide the distribution name, version, and release. The following command can help get this information: `cat /etc/*-release && cat /proc/version`
70+
- On macOS, please provide the product version and build version. The following command can help get this information: `sw_vers`
7071
- On a Windows OS please provide edition, version, build, and language. The following command can help get this information: `Get-ComputerInfo -Property @('OsName','OsOperatingSystemSKU','OSArchitecture','WindowsVersion','WindowsBuildLabEx','OsLanguage','OsMuiLanguages')`
7172
placeholder: |
7273
Add operating system information here

.github/workflows/code-analysis-built-module.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Install GitVersion
2525
shell: powershell
2626
run: |
27-
dotnet tool install --global GitVersion.Tool
27+
dotnet tool install --global GitVersion.Tool --version 5.*
2828
- name: Run GitVersion
2929
shell: powershell
3030
run: |

.github/workflows/code-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Install GitVersion
2525
shell: powershell
2626
run: |
27-
dotnet tool install --global GitVersion.Tool
27+
dotnet tool install --global GitVersion.Tool --version 5.*
2828
- name: Run GitVersion
2929
shell: powershell
3030
run: |

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2525

2626
### Fixed
2727

28+
- SqlServerDsc
29+
- Fix issue template.
2830
- `Connect-SqlDscDatabaseEngine`
2931
- Comment-based help for parameter `LoginType` was corrected.
3032
- An integration test now runs to test the command.

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ build_script:
5656
# Only run for pull requests
5757
if (-not $env:APPVEYOR_PULL_REQUEST_NUMBER) { Write-Host -ForegroundColor 'Yellow' -Object 'Not a pull request, skipping.'; return }
5858
59-
dotnet tool install --global GitVersion.Tool
59+
dotnet tool install --global GitVersion.Tool --version 5.*
6060
$env:IGNORE_NORMALISATION_GIT_HEAD_MOVE = 1 # cSpell: disable-line
6161
dotnet-gitversion
6262
$gitVersionObject = dotnet-gitversion | ConvertFrom-Json

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ stages:
2929
vmImage: 'windows-latest'
3030
steps:
3131
- pwsh: |
32-
dotnet tool install --global GitVersion.Tool
32+
dotnet tool install --global GitVersion.Tool --version 5.*
3333
$gitVersionObject = dotnet-gitversion | ConvertFrom-Json
3434
$gitVersionObject.PSObject.Properties.ForEach{
3535
Write-Host -Object "Setting Task Variable '$($_.Name)' with value '$($_.Value)'."

0 commit comments

Comments
 (0)