Skip to content

Commit f70183a

Browse files
authored
Merge branch 'main' into update_accelnet
2 parents 9ccf2f0 + 675c671 commit f70183a

File tree

130 files changed

+8260
-1340
lines changed

Some content is hidden

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

130 files changed

+8260
-1340
lines changed

.github/workflows/AutoLabelAssign.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: Assign and label PR
2+
3+
permissions:
4+
pull-requests: write
5+
contents: read
6+
actions: read
7+
8+
on:
9+
workflow_run:
10+
workflows: [Background tasks]
11+
types:
12+
- completed
13+
14+
jobs:
15+
download-payload:
16+
name: Download and extract payload artifact
17+
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-ExtractPayload.yml@workflows-prod
18+
with:
19+
WorkflowId: ${{ github.event.workflow_run.id }}
20+
OrgRepo: ${{ github.repository }}
21+
secrets:
22+
AccessToken: ${{ secrets.GITHUB_TOKEN }}
23+
24+
label-assign:
25+
name: Run assign and label
26+
needs: [download-payload]
27+
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-AutoLabelAssign.yml@workflows-prod
28+
with:
29+
PayloadJson: ${{ needs.download-payload.outputs.WorkflowPayload }}
30+
AutoAssignUsers: 1
31+
AutoLabel: 1
32+
ExcludedUserList: '["user1", "user2"]'
33+
ExcludedBranchList: '["branch1", "branch2"]'
34+
secrets:
35+
AccessToken: ${{ secrets.GITHUB_TOKEN }}
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: Auto label Microsoft contributors
2+
3+
permissions:
4+
pull-requests: write
5+
contents: read
6+
actions: read
7+
8+
on:
9+
workflow_run:
10+
workflows: [Background tasks]
11+
types:
12+
- completed
13+
14+
jobs:
15+
download-payload:
16+
if: github.repository_visibility == 'public'
17+
name: Download and extract payload artifact
18+
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-ExtractPayload.yml@workflows-prod
19+
with:
20+
WorkflowId: ${{ github.event.workflow_run.id }}
21+
OrgRepo: ${{ github.repository }}
22+
secrets:
23+
AccessToken: ${{ secrets.GITHUB_TOKEN }}
24+
25+
label-msft:
26+
name: Label Microsoft contributors
27+
if: github.repository_visibility == 'public'
28+
needs: [download-payload]
29+
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-AutoLabelMsftContributor.yml@workflows-prod
30+
with:
31+
PayloadJson: ${{ needs.download-payload.outputs.WorkflowPayload }}
32+
secrets:
33+
AccessToken: ${{ secrets.GITHUB_TOKEN }}
34+
TeamReadAccessToken: ${{ secrets.ORG_READTEAMS_TOKEN }}

.github/workflows/BackgroundTasks.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Background tasks
2+
3+
permissions:
4+
pull-requests: write
5+
contents: read
6+
7+
on:
8+
pull_request_target:
9+
10+
jobs:
11+
upload:
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- name: Save payload data
16+
env:
17+
PayloadJson: ${{ toJSON(github) }}
18+
AccessToken: ${{ github.token }}
19+
run: |
20+
mkdir -p ./pr
21+
echo $PayloadJson > ./pr/PayloadJson.json
22+
sed -i -e "s/$AccessToken/XYZ/g" ./pr/PayloadJson.json
23+
- uses: actions/upload-artifact@v4
24+
with:
25+
name: PayloadJson
26+
path: pr/

.github/workflows/LiveMergeCheck.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: PR can merge into branch
2+
3+
permissions:
4+
pull-requests: write
5+
statuses: write
6+
contents: read
7+
8+
on:
9+
pull_request_target:
10+
types: [opened, reopened, synchronize, edited]
11+
12+
jobs:
13+
14+
live-merge:
15+
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-LiveMergeCheck.yml@workflows-prod
16+
with:
17+
PayloadJson: ${{ toJSON(github) }}
18+
secrets:
19+
AccessToken: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/PrFileCount.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: PR file count less than limit
2+
3+
permissions:
4+
pull-requests: write
5+
statuses: write
6+
contents: read
7+
8+
on:
9+
pull_request_target:
10+
types: [opened, reopened, synchronize, labeled, unlabeled, edited]
11+
12+
jobs:
13+
14+
file-count:
15+
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-PrFileCount.yml@workflows-prod
16+
with:
17+
PayloadJson: ${{ toJSON(github) }}
18+
secrets:
19+
AccessToken: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/ProtectedFiles.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: PR has no protected files
2+
3+
permissions:
4+
pull-requests: write
5+
statuses: write
6+
contents: read
7+
8+
on: [pull_request_target]
9+
10+
jobs:
11+
12+
protected-files:
13+
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-ProtectedFiles.yml@workflows-prod
14+
with:
15+
PayloadJson: ${{ toJSON(github) }}
16+
secrets:
17+
AccessToken: ${{ secrets.GITHUB_TOKEN }}

.openpublishing.build.ps1

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

TeamsAdmin.png

-6.97 KB
Binary file not shown.

cabgen-bootstrap.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ pr: none # Disable pull request triggers.
55

66
resources:
77
repositories:
8-
- repository: templates
8+
- repository: ReferenceAutomation
99
type: git
1010
name: Content CI/ReferenceAutomation
1111
ref: refs/heads/master
1212

1313
extends:
14-
template: PowerShell/cabgen.yml@templates
14+
template: PowerShell/cabgen.yml@ReferenceAutomation

docset/images/compare-changes.png

-30.6 KB
Binary file not shown.

docset/images/contribute-link.png

-9.78 KB
Binary file not shown.

docset/images/pencil-icon.png

-9.79 KB
Binary file not shown.

docset/images/preview-changes.png

-12.8 KB
Binary file not shown.

docset/images/propose-file-change.png

-20 KB
Binary file not shown.

docset/winserver2012-ps/adfs/Get-ADFSRelyingPartyTrust.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,14 @@ Gets the current property settings for a relying party trust that is specified b
4646

4747
### -------------------------- EXAMPLE 2 --------------------------
4848
```
49-
C:\PS>Get-ADFSRelyingPartyTrust -Identifier https://SampleApp.SampleServer.org
49+
C:\PS>Get-ADFSRelyingPartyTrust -Identifier https://www.fabrikam.com/
5050
```
5151

5252
Description
5353

5454
-----------
5555

56-
Gets the current property settings for a relying party trust that is specified by the identifier https://SampleApp.SampleServer.org.
56+
Gets the current property settings for a relying party trust that is specified by the identifier `https://www.fabrikam.com`.
5757

5858
### -------------------------- EXAMPLE 3 --------------------------
5959
```

docset/winserver2012r2-ps/adfs/Get-AdfsRelyingPartyTrust.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,11 @@ This command gets the property settings for the relying party trust named Fabrik
4444

4545
### Example 2: Get property settings for a relying party trust by using an identifier
4646
```
47-
PS C:\> Get-AdfsRelyingPartyTrust -Identifier "https://FabrikamApp.CentralServer.org"
47+
PS C:\> Get-AdfsRelyingPartyTrust -Identifier "https://app.fabrikam.com"
48+
4849
```
4950

50-
This command gets the property settings for a relying party trust that has the identifier https://FabrikamApp.CentralServer.org.
51+
This command gets the property settings for a relying party trust that has the identifier `https://FabrikamApp.CentralServer.org`.
5152

5253
### Example 3: Get property settings for an updated relying party trust
5354
```

docset/winserver2012r2-ps/hpc/Get-HpcJobCredential.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,6 @@ This cmdlet was introduced in HPC Pack 2008 R2 with Service Pack 2 (SP2). It is
6666
6767
[New-HpcSoftCard](./New-HpcSoftCard.md)
6868
69-
[Remove-HpcJobCredential](./Remove-HpcJobCredential.md)
69+
[Remove-HpcJobCredential](/powershell/module/hpcpack2016/remove-hpcjobcredential?view=hpc16-ps)
7070
71-
[Set-HpcJobCredential](./Set-HpcJobCredential.md)
71+
[Set-HpcJobCredential](/powershell/module/hpcpack2016/set-hpcjobcredential?view=hpc16-ps)

docset/winserver2012r2-ps/hpc/New-HpcSoftCard.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,4 +85,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
8585
[Get-HpcJobCredential](./Get-HpcJobCredential.md)
8686
8787
88-
[Set-HpcJobCredential](./Set-HpcJobCredential.md)
88+
[Set-HpcJobCredential](/powershell/module/hpcpack2016/set-hpcjobcredential?view=hpc16-ps)

docset/winserver2012r2-ps/hpc/Set-HpcNode.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -340,11 +340,11 @@ You must be a cluster administrator to run this cmdlet successfully.
340340
341341
## RELATED LINKS
342342
343-
[Get-HpcNode](./Get-HpcNode.md)
343+
[Get-HpcNode](/powershell/module/hpcpack2016/get-hpcnode?view=hpc16-ps)
344344
345-
[Remove-HpcNode](./Remove-HpcNode.md)
345+
[Remove-HpcNode](/powershell/module/hpcpack2016/remove-hpcnode?view=hpc16-ps)
346346
347-
[Restart-HpcNode](./Restart-HpcNode.md)
347+
[Restart-HpcNode](/powershell/module/hpcpack2016/restart-hpcnode?view=hpc16-ps)
348348
349349
[Shutdown-HpcNode](./Shutdown-HpcNode.md)
350350

docset/winserver2012r2-ps/hpc/Set-HpcNodeState.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,6 @@ You must be a cluster administrator to run this cmdlet successfully.
214214
215215
## RELATED LINKS
216216
217-
[Get-HpcNode](./Get-HpcNode.md)
217+
[Get-HpcNode](/powershell/module/hpcpack2016/get-hpcnode?view=hpc16-ps)
218218
219219
[Set-HpcNode](./Set-HpcNode.md)

docset/winserver2012r2-ps/hpc/Set-HpcPool.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,8 @@ This cmdlet was introduced in HPC Pack 2008 R2 with Service Pack 2 (SP2). It is
117117
118118
## RELATED LINKS
119119
120-
[Add-HpcPool](./Add-HpcPool.md)
120+
[Add-HpcPool](/powershell/module/hpcpack2016/add-hpcpool?view=hpc16-ps)
121121
122-
[Get-HpcPool](./Get-HpcPool.md)
122+
[Get-HpcPool](/powershell/module/hpcpack2016/get-hpcpool?view=hpc16-ps)
123123
124-
[Remove-HpcPool](./Remove-HpcPool.md)
124+
[Remove-HpcPool](/powershell/module/hpcpack2016/remove-hpcpool?view=hpc16-ps)

docset/winserver2012r2-ps/hpc/Set-HpcSoaCredential.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,8 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
132132

133133
## RELATED LINKS
134134

135-
[Remove-HpcSoaCredential](./Remove-HpcSoaCredential.md)
135+
[Remove-HpcSoaCredential](/powershell/module/hpcpack2016/remove-hpcsoacredential?view=hpc16-ps)
136136

137-
[Set-HpcJobCredential](./Set-HpcJobCredential.md)
137+
[Set-HpcJobCredential](/powershell/module/hpcpack2016/set-hpcjobcredential?view=hpc16-ps)
138138

139139
[Set-HpcTestCredential](./Set-HpcTestCredential.md)

docset/winserver2012r2-ps/hpc/Set-HpcTask.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -663,10 +663,10 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
663663

664664
## RELATED LINKS
665665

666-
[Add-HpcTask](./Add-HpcTask.md)
666+
[Add-HpcTask](/powershell/module/hpcpack2016/add-hpctask?view=hpc16-ps)
667667

668-
[Export-HpcTask](./Export-HpcTask.md)
668+
[Export-HpcTask](/powershell/module/hpcpack2016/export-hpctask?view=hpc16-ps)
669669

670-
[Get-HpcTask](./Get-HpcTask.md)
670+
[Get-HpcTask](/powershell/module/hpcpack2016/get-hpctask?view=hpc16-ps)
671671

672672
[Stop-HpcTask](./Stop-HpcTask.md)

docset/winserver2012r2-ps/hpc/Set-HpcTestCredential.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -144,10 +144,10 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
144144

145145
## RELATED LINKS
146146

147-
[Invoke-HpcTest](./Invoke-HpcTest.md)
147+
[Invoke-HpcTest](/powershell/module/hpcpack2016/invoke-hpctest?view=hpc16-ps)
148148

149-
[Remove-HpcTestCredential](./Remove-HpcTestCredential.md)
149+
[Remove-HpcTestCredential](/powershell/module/hpcpack2016/remove-hpctestcredential?view=hpc16-ps)
150150

151-
[Set-HpcJobCredential](./Set-HpcJobCredential.md)
151+
[Set-HpcJobCredential](/powershell/module/hpcpack2016/set-hpcjobcredential?view=hpc16-ps)
152152

153153
[Set-HpcSoaCredential](./Set-HpcSoaCredential.md)

docset/winserver2012r2-ps/hpc/Shutdown-HpcNode.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -165,11 +165,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
165165

166166
## RELATED LINKS
167167

168-
[Get-HpcNode](./Get-HpcNode.md)
168+
[Get-HpcNode](/powershell/module/hpcpack2016/get-hpcnode?view=hpc16-ps)
169169

170-
[Remove-HpcNode](./Remove-HpcNode.md)
170+
[Remove-HpcNode](/powershell/module/hpcpack2016/remove-hpcnode?view=hpc16-ps)
171171

172-
[Restart-HpcNode](./Restart-HpcNode.md)
172+
[Restart-HpcNode](/powershell/module/hpcpack2016/restart-hpcnode?view=hpc16-ps)
173173

174174
[Set-HpcNode](./Set-HpcNode.md)
175175

docset/winserver2012r2-ps/hpc/Start-HpcAzureNode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
137137

138138
## RELATED LINKS
139139

140-
[Remove-HpcAzureNode](./Remove-HpcAzureNode.md)
140+
[Remove-HpcAzureNode](/powershell/module/hpcpack2016/remove-hpcazurenode?view=hpc16-ps)
141141

142142
[Start-HpcNodeSet](./Start-HpcNodeSet.md)
143143

docset/winserver2012r2-ps/hpc/Start-HpcNode.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,11 +117,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
117117

118118
## RELATED LINKS
119119

120-
[Get-HpcNode](./Get-HpcNode.md)
120+
[Get-HpcNode](/powershell/module/hpcpack2016/get-hpcnode?view=hpc16-ps)
121121

122-
[Remove-HpcNode](./Remove-HpcNode.md)
122+
[Remove-HpcNode](/powershell/module/hpcpack2016/remove-hpcnode?view=hpc16-ps)
123123

124-
[Restart-HpcNode](./Restart-HpcNode.md)
124+
[Restart-HpcNode](/powershell/module/hpcpack2016/restart-hpcnode?view=hpc16-ps)
125125

126126
[Set-HpcNode](./Set-HpcNode.md)
127127

docset/winserver2012r2-ps/hpc/Start-HpcNodeSet.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,9 +111,9 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
111111

112112
## RELATED LINKS
113113

114-
[Add-HpcNodeSet](./Add-HpcNodeSet.md)
114+
[Add-HpcNodeSet](/powershell/module/hpcpack2016/add-hpcnodeset?view=hpc16-ps)
115115

116-
[Remove-HpcNodeSet](./Remove-HpcNodeSet.md)
116+
[Remove-HpcNodeSet](/powershell/module/hpcpack2016/remove-hpcnodeset?view=hpc16-ps)
117117

118118
[Start-HpcAzureNode](./Start-HpcAzureNode.md)
119119

docset/winserver2012r2-ps/hpc/Stop-HpcAzureNode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
171171

172172
## RELATED LINKS
173173

174-
[Remove-HpcAzureNode](./Remove-HpcAzureNode.md)
174+
[Remove-HpcAzureNode](/powershell/module/hpcpack2016/remove-hpcazurenode?view=hpc16-ps)
175175

176176
[Start-HpcAzureNode](./Start-HpcAzureNode.md)
177177

docset/winserver2012r2-ps/hpc/Stop-HpcJob.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -248,12 +248,12 @@ All other tasks are queued, including those that failed.
248248

249249
## RELATED LINKS
250250

251-
[Export-HpcJob](./Export-HpcJob.md)
251+
[Export-HpcJob](/powershell/module/hpcpack2016/export-hpcjob?view=hpc16-ps)
252252

253-
[Get-HpcJob](./Get-HpcJob.md)
253+
[Get-HpcJob](/powershell/module/hpcpack2016/get-hpcjob?view=hpc16-ps)
254254

255-
[New-HpcJob](./New-HpcJob.md)
255+
[New-HpcJob](/powershell/module/hpcpack2016/new-hpcjob?view=hpc16-ps)
256256

257-
[Set-HpcJob](./Set-HpcJob.md)
257+
[Set-HpcJob](/powershell/module/hpcpack2016/set-hpcjob?view=hpc16-ps)
258258

259259
[Submit-HpcJob](./Submit-HpcJob.md)

docset/winserver2012r2-ps/hpc/Stop-HpcNodeSet.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,9 +143,9 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
143143

144144
## RELATED LINKS
145145

146-
[Add-HpcNodeSet](./Add-HpcNodeSet.md)
146+
[Add-HpcNodeSet](/powershell/module/hpcpack2016/add-hpciscsistoragearray?view=hpc16-ps)
147147

148-
[Remove-HpcNodeSet](./Remove-HpcNodeSet.md)
148+
[Remove-HpcNodeSet](/powershell/module/hpcpack2016/remove-hpcnodeset?view=hpc16-ps)
149149

150150
[Start-HpcNodeSet](./Start-HpcNodeSet.md)
151151

0 commit comments

Comments
 (0)