Skip to content

Commit cd0272d

Browse files
committed
merge fixes
2 parents b3db00c + aa9d801 commit cd0272d

File tree

10,879 files changed

+1751230
-1193619
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

10,879 files changed

+1751230
-1193619
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"SyncPath": [
3+
"tools",
4+
".azure-pipelines",
5+
"src/lib",
6+
"build.proj"
7+
],
8+
"UnSyncPath": [
9+
".azure-pipelines/SyncFromMainBranchConfig.json"
10+
]
11+
}

.azure-pipelines/daily-build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,8 @@ jobs:
9797
Release/**/Microsoft.Azure.PowerShell.Authentication.dll
9898
Release/**/Microsoft.Azure.PowerShell.Authentication.ResourceManager.dll
9999
Release/**/Microsoft.Azure.PowerShell.Authenticators.dll
100+
Release/**/Microsoft.Azure.PowerShell.AuthenticationAssemblyLoadContext.dll
101+
Release/**/Microsoft.Azure.Commands.*.AlcWrapper.dll
100102
!Release/**/Microsoft*Azure*PowerShell*Cmdlets*.Test.dll
101103
UseMinimatch: true
102104
signConfigType: 'inlineSignParams'

.azure-pipelines/sync-tools-folder.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ trigger:
1717
variables:
1818
GenerationBranchName: generation
1919
AzureStackBranchName: Azs-tzl
20+
GithubToken: $(GITHUB_TOKEN)
2021

2122
jobs:
2223
- job: Sync
@@ -30,6 +31,10 @@ jobs:
3031
BranchName: ${{ variables.AzureStackBranchName }}
3132

3233
steps:
33-
- template: util/sync-tools-folder-template.yml
34-
parameters:
35-
BranchName: $(BranchName)
34+
- task: PowerShell@2
35+
displayName: Sync branch
36+
inputs:
37+
targetType: inline
38+
script: >-
39+
./tools/SyncFromMainBranch.ps1 -BranchName $(BranchName) -GithubToken $(GithubToken)
40+
pwsh: true

.azure-pipelines/util/sync-tools-folder-template.yml

Lines changed: 0 additions & 80 deletions
This file was deleted.

.ci-config.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,11 @@
6262
"README.md",
6363
"**/ChangeLog.md",
6464
"**/readme.md",
65-
"src/**/document/*"
65+
"src/**/document/*",
66+
".ci-config.json",
67+
"tools/PrepareAutorestModule.ps1",
68+
"tools/SyncFromMainBranch.ps1",
69+
"tools/GeneratedModuleList.txt"
6670
],
6771
"phases": []
6872
},
Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
name: 🐞 Az module bug report
2+
description: Report errors or unexpected behaviors for the Az module.
3+
labels: [needs-triage, bug]
4+
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: >
9+
Thanks for reporting.
10+
11+
- Make sure you are able to reproduce this issue on the latest released version of [Az](https://www.powershellgallery.com/packages/Az) or [AzPreview](https://www.powershellgallery.com/packages/AzPreview)
12+
13+
- Please search the existing issues to see if there has been a similar issue filed
14+
15+
- For issue related to importing a module, please refer to our [troubleshooting guide](https://github.com/Azure/azure-powershell/blob/master/documentation/troubleshoot-module-load.md)
16+
- type: textarea
17+
attributes:
18+
label: Description
19+
description: >
20+
Please describe the issue and expected result. Please paste error script to next "Debug output" section
21+
validations:
22+
required: true
23+
- type: textarea
24+
attributes:
25+
label: Issue script & Debug output
26+
description: >
27+
Set `$DebugPreference='Continue'` before running the repro and paste the resulting debug stream in the below textarea
28+
29+
**⚠ ATTENTION:** Be sure to remove any sensitive information that may be in the logs
30+
render: PowerShell
31+
placeholder: |
32+
PS> $DebugPreference='Continue'
33+
PS> {}-Az{} ...
34+
validations:
35+
required: true
36+
- type: textarea
37+
attributes:
38+
label: Environment data
39+
description: >
40+
Please run `$PSVersionTable` and paste the output in the below textarea.
41+
If running the Docker container image, indicate the tag of the image used and the version of Docker engine
42+
render: PowerShell
43+
placeholder: |
44+
PS> $PSVersionTable
45+
validations:
46+
required: true
47+
- type: textarea
48+
attributes:
49+
label: Module versions
50+
description: >
51+
Please run `Get-Module Az*` after cmdlet execution and paste the output in the below textarea.
52+
53+
If module cannot be installed or imported, please run `Get-Module -ListAvailable` and paste the output.
54+
render: PowerShell
55+
placeholder: |
56+
PS> Get-Module Az*
57+
validations:
58+
required: true
59+
- type: textarea
60+
attributes:
61+
label: Error output
62+
description: >
63+
Please run `Resolve-AzError` and paste the output in the below textarea
64+
65+
**⚠ ATTENTION:** Be sure to remove any sensitive information that may be in the logs
66+
render: PowerShell
67+
placeholder: |
68+
PS> Resolve-AzError
69+
validations:
70+
required: false
71+
- type: markdown
72+
attributes:
73+
value: >
74+
The Azure PowerShell team is listening, please let us know how we are doing: https://aka.ms/azpssurvey?Q_CHL=REPO.
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: ✨ Feature request
2+
description: Suggest a new feature or improvement
3+
title: '[Feature]: '
4+
labels: [feature-request, needs-triage]
5+
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: >
10+
Thanks for reporting.
11+
12+
- Please search the existing feature request to see if there has been a similar issue filed.
13+
- type: textarea
14+
attributes:
15+
label: Description of the new feature
16+
validations:
17+
required: true
18+
- type: textarea
19+
attributes:
20+
label: Proposed implementation details (optional)
21+
validations:
22+
required: false
23+
- type: markdown
24+
attributes:
25+
value: >
26+
The Azure PowerShell team is listening, please let us know how we are doing: https://aka.ms/azpssurvey?Q_CHL=REPO.
Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
name: 🤔 Az module question or discussion
2+
description: Raise questions or discussions for the Az module
3+
labels: [needs-triage, question]
4+
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: >
9+
Thanks for reporting.
10+
11+
- Please search the existing questions to see if there has been a similar issue filed
12+
13+
- For questions related to importing a module, please refer to our [troubleshooting guide](https://github.com/Azure/azure-powershell/blob/master/documentation/troubleshoot-module-load.md)
14+
- type: textarea
15+
attributes:
16+
label: Description
17+
description: >
18+
Please describe the question.
19+
validations:
20+
required: true
21+
- type: textarea
22+
attributes:
23+
label: Script or Debug output
24+
description: >
25+
Set `$DebugPreference='Continue'` before running the repro and paste the resulting debug stream in the below textarea
26+
27+
**⚠ ATTENTION:** Be sure to remove any sensitive information that may be in the logs
28+
render: PowerShell
29+
placeholder: |
30+
PS> $DebugPreference='Continue'
31+
PS> {}-Az{} ...
32+
validations:
33+
required: false
34+
- type: textarea
35+
attributes:
36+
label: Environment data
37+
description: >
38+
Please run `$PSVersionTable` and paste the output in the below textarea.
39+
If running the Docker container image, indicate the tag of the image used and the version of Docker engine
40+
render: PowerShell
41+
placeholder: |
42+
PS> $PSVersionTable
43+
validations:
44+
required: false
45+
- type: textarea
46+
attributes:
47+
label: Module versions
48+
description: >
49+
Please run `Get-Module Az*` after cmdlet execution and paste the output in the below textarea.
50+
51+
If module cannot be installed or imported, please run `Get-Module -ListAvailable` and paste the output.
52+
render: PowerShell
53+
placeholder: |
54+
PS> Get-Module Az*
55+
validations:
56+
required: false
57+
- type: textarea
58+
attributes:
59+
label: Error output
60+
description: >
61+
Please run `Resolve-AzError` and paste the output in the below textarea
62+
63+
**⚠ ATTENTION:** Be sure to remove any sensitive information that may be in the logs
64+
render: PowerShell
65+
placeholder: |
66+
PS> Resolve-AzError
67+
validations:
68+
required: false
69+
- type: markdown
70+
attributes:
71+
value: >
72+
The Azure PowerShell team is listening, please let us know how we are doing: https://aka.ms/azpssurvey?Q_CHL=REPO.
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: ✒️ Document issue or question
2+
description: Report document related issue
3+
title: '[Doc]: '
4+
labels: [needs-triage]
5+
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: >
10+
Thanks for reporting. Azure PowerShell document includes 3 categories.
11+
12+
- Conceptual doc about Azure PowerShell: https://docs.microsoft.com/en-us/powershell/azure
13+
14+
- Cmdlet reference doc: https://docs.microsoft.com/en-us/powershell/module
15+
16+
- Engineering doc on Github repo: https://github.com/Azure/azure-powershell
17+
- type: textarea
18+
attributes:
19+
label: Description
20+
description: >
21+
Please describe issue or question about doc. The link of document is helpful for discussion.
22+
validations:
23+
required: true
24+
- type: markdown
25+
attributes:
26+
value: >
27+
The Azure PowerShell team is listening, please let us know how we are doing: https://aka.ms/azpssurvey?Q_CHL=REPO.

0 commit comments

Comments
 (0)