Skip to content

Commit ebc8add

Browse files
authored
Merge branch 'main' into us402106-09
2 parents f6ac33d + 9ac970c commit ebc8add

35 files changed

+386
-447
lines changed

.github/workflows/AutoLabelAssign.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ on:
1414
jobs:
1515
download-payload:
1616
name: Download and extract payload artifact
17+
if: github.repository_owner == 'MicrosoftDocs'
1718
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-ExtractPayload.yml@workflows-prod
1819
with:
1920
WorkflowId: ${{ github.event.workflow_run.id }}
@@ -23,6 +24,7 @@ jobs:
2324

2425
label-assign:
2526
name: Run assign and label
27+
if: github.repository_owner == 'MicrosoftDocs'
2628
needs: [download-payload]
2729
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-AutoLabelAssign.yml@workflows-prod
2830
with:
@@ -32,10 +34,4 @@ jobs:
3234
ExcludedUserList: '["user1", "user2"]'
3335
ExcludedBranchList: '["branch1", "branch2"]'
3436
secrets:
35-
AccessToken: ${{ secrets.GITHUB_TOKEN }}
36-
37-
38-
39-
40-
41-
37+
AccessToken: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/AutoLabelMsftContributor.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313

1414
jobs:
1515
download-payload:
16-
if: github.repository_visibility == 'public'
16+
if: github.repository_owner == 'MicrosoftDocs' && github.repository_visibility == 'public'
1717
name: Download and extract payload artifact
1818
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-ExtractPayload.yml@workflows-prod
1919
with:
@@ -24,12 +24,12 @@ jobs:
2424

2525
label-msft:
2626
name: Label Microsoft contributors
27-
if: github.repository_visibility == 'public'
27+
if: github.repository_owner == 'MicrosoftDocs' && github.repository_visibility == 'public'
2828
needs: [download-payload]
2929
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-AutoLabelMsftContributor.yml@workflows-prod
3030
with:
3131
PayloadJson: ${{ needs.download-payload.outputs.WorkflowPayload }}
3232
secrets:
3333
AccessToken: ${{ secrets.GITHUB_TOKEN }}
3434
ClientId: ${{ secrets.M365_APP_CLIENT_ID }}
35-
PrivateKey: ${{ secrets.M365_APP_PRIVATE_KEY }}
35+
PrivateKey: ${{ secrets.M365_APP_PRIVATE_KEY }}

.github/workflows/BackgroundTasks.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ on:
99

1010
jobs:
1111
upload:
12+
if: github.repository_owner == 'MicrosoftDocs'
1213
runs-on: ubuntu-latest
1314

1415
steps:
@@ -23,4 +24,4 @@ jobs:
2324
- uses: actions/upload-artifact@v4
2425
with:
2526
name: PayloadJson
26-
path: pr/
27+
path: pr/

.github/workflows/BuildValidation.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,9 @@ on:
1111
jobs:
1212

1313
build-status:
14+
if: github.repository_owner == 'MicrosoftDocs'
1415
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-BuildValidation.yml@workflows-prod
1516
with:
1617
PayloadJson: ${{ toJSON(github) }}
1718
secrets:
1819
AccessToken: ${{ secrets.GITHUB_TOKEN }}
19-
20-
21-

.github/workflows/LiveMergeCheck.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,9 @@ on:
1212
jobs:
1313

1414
live-merge:
15+
if: github.repository_owner == 'MicrosoftDocs'
1516
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-LiveMergeCheck.yml@workflows-prod
1617
with:
1718
PayloadJson: ${{ toJSON(github) }}
1819
secrets:
19-
AccessToken: ${{ secrets.GITHUB_TOKEN }}
20-
21-
22-
20+
AccessToken: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/PrFileCount.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,9 @@ on:
1212
jobs:
1313

1414
file-count:
15+
if: github.repository_owner == 'MicrosoftDocs'
1516
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-PrFileCount.yml@workflows-prod
1617
with:
1718
PayloadJson: ${{ toJSON(github) }}
1819
secrets:
19-
AccessToken: ${{ secrets.GITHUB_TOKEN }}
20-
21-
22-
20+
AccessToken: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/ProtectedFiles.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,9 @@ on: [pull_request_target]
1010
jobs:
1111

1212
protected-files:
13+
if: github.repository_owner == 'MicrosoftDocs'
1314
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-ProtectedFiles.yml@workflows-prod
1415
with:
1516
PayloadJson: ${{ toJSON(github) }}
1617
secrets:
17-
AccessToken: ${{ secrets.GITHUB_TOKEN }}
18-
19-
20-
18+
AccessToken: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/Stale.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ on:
1111

1212
jobs:
1313
stale:
14+
if: github.repository_owner == 'MicrosoftDocs'
1415
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-Stale.yml@workflows-prod
1516
with:
1617
RunDebug: false

.github/workflows/StaleBranch.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,22 @@ permissions:
55

66
on:
77
schedule:
8-
- cron: "0 */12 * * *"
8+
- cron: "0 9 1 * *"
99

10-
workflow_dispatch:
10+
# workflow_dispatch:
1111

1212

1313
jobs:
1414

1515
stale-branch:
16+
if: github.repository_owner == 'MicrosoftDocs'
1617
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-StaleBranch.yml@workflows-prod
1718
with:
1819
PayloadJson: ${{ toJSON(github) }}
1920
RepoBranchSkipList: '[
2021
"ExampleBranch1",
2122
"ExampleBranch2"
2223
]'
23-
ReportOnly: true
24+
ReportOnly: false
2425
secrets:
25-
AccessToken: ${{ secrets.GITHUB_TOKEN }}
26+
AccessToken: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/TierManagement.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ on:
1111
jobs:
1212

1313
tier-mgmt:
14-
if: github.repository_visibility == 'private'
14+
if: github.repository_owner == 'MicrosoftDocs' && github.repository_visibility == 'private'
1515
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-TierManagement.yml@workflows-prod
1616
with:
1717
PayloadJson: ${{ toJSON(github) }}
1818
EnableWriteSignOff: 1
1919
EnableReadOnlySignoff: 1
2020
secrets:
21-
AccessToken: ${{ secrets.GITHUB_TOKEN }}
21+
AccessToken: ${{ secrets.GITHUB_TOKEN }}

docset/winserver2025-ps/NetworkATC/Add-NetIntent.md

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -511,11 +511,10 @@ Accept wildcard characters: False
511511

512512
### CommonParameters
513513

514-
This cmdlet supports the common parameters: -Debug, -ErrorAction,
515-
-ErrorVariable, -InformationAction, -InformationVariable, -OutVariable,
516-
-OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
517-
For more information, see
518-
[about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters).
514+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable,
515+
-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose,
516+
-WarningAction, and -WarningVariable. For more information, see
517+
[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).
519518

520519
## INPUTS
521520

@@ -525,12 +524,12 @@ For more information, see
525524

526525
## RELATED LINKS
527526

528-
- [Copy-NetIntent](Copy-NetIntent.md)
527+
[Copy-NetIntent](Copy-NetIntent.md)
529528

530-
- [Get-NetIntent](Get-NetIntent.md)
529+
[Get-NetIntent](Get-NetIntent.md)
531530

532-
- [Get-NetIntentStatus](Get-NetIntentStatus.md)
531+
[Get-NetIntentStatus](Get-NetIntentStatus.md)
533532

534-
- [Remove-NetIntent](Remove-NetIntent.md)
533+
[Remove-NetIntent](Remove-NetIntent.md)
535534

536-
- [Set-NetIntent](Set-NetIntent.md)
535+
[Set-NetIntent](Set-NetIntent.md)

docset/winserver2025-ps/NetworkATC/Copy-NetIntent.md

Lines changed: 20 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,8 @@ Copy-NetIntent [-GlobalOverrides] [-SourceComputerName] <String> [-DestinationCo
7272

7373
## DESCRIPTION
7474

75-
The `Copy-NetIntent` cmdlet copies or moves a network intent from one host or
76-
cluster to another. The source intent is removed if the **RemoveSource**
77-
parameter is provided.
75+
The `Copy-NetIntent` cmdlet copies or moves a network intent from one host or cluster to another.
76+
The source intent is removed if the **RemoveSource** parameter is provided.
7877

7978
## EXAMPLES
8079

@@ -84,16 +83,16 @@ parameter is provided.
8483
Copy-NetIntent -Name "MyIntent" -SourceComputerName "Server01" -DestinationComputerName "Server02"
8584
```
8685

87-
This example copies a network intent from the standalone device `Server01` to
88-
the standalone destination device `Server02`.
86+
This example copies a network intent from the standalone device `Server01` to the standalone
87+
destination device `Server02`.
8988

9089
## PARAMETERS
9190

9291
### -Name
9392

94-
Defines a unique name that identifies the network intent. Since intents are
95-
uniquely determined by their list of physical adapters, the name is used as an
96-
identifier to ensure that each intent is distinct.
93+
Defines a unique name that identifies the network intent. Since intents are uniquely determined by
94+
their list of physical adapters, the name is used as an identifier to ensure that each intent is
95+
distinct.
9796

9897
```yaml
9998
Type: String
@@ -190,8 +189,8 @@ Accept wildcard characters: False
190189
191190
### -RemoveSource
192191
193-
Indicates whether the original network intent should be removed from the source
194-
after the copy operation is completed.
192+
Indicates whether the original network intent should be removed from the source after the copy
193+
operation is completed.
195194
196195
```yaml
197196
Type: Boolean
@@ -207,8 +206,8 @@ Accept wildcard characters: False
207206
208207
### -Wait
209208
210-
When specified, the command will wait for the network configuration commands to
211-
complete or for status confirmation before returning control.
209+
When specified, the command will wait for the network configuration commands to complete or for
210+
status confirmation before returning control.
212211
213212
```yaml
214213
Type: SwitchParameter
@@ -224,11 +223,10 @@ Accept wildcard characters: False
224223
225224
### CommonParameters
226225
227-
This cmdlet supports the common parameters: -Debug, -ErrorAction,
228-
-ErrorVariable, -InformationAction, -InformationVariable, -OutVariable,
229-
-OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
230-
For more information, see
231-
[about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters).
226+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable,
227+
-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose,
228+
-WarningAction, and -WarningVariable. For more information, see
229+
[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).
232230
233231
## INPUTS
234232
@@ -240,12 +238,12 @@ The copy and removal operation of the intent isn't a transacted operation.
240238
241239
## RELATED LINKS
242240
243-
- [Add-NetIntent](Add-NetIntent.md)
241+
[Add-NetIntent](Add-NetIntent.md)
244242
245-
- [Get-NetIntent](Get-NetIntent.md)
243+
[Get-NetIntent](Get-NetIntent.md)
246244
247-
- [Get-NetIntentStatus](Get-NetIntentStatus.md)
245+
[Get-NetIntentStatus](Get-NetIntentStatus.md)
248246
249-
- [Remove-NetIntent](Remove-NetIntent.md)
247+
[Remove-NetIntent](Remove-NetIntent.md)
250248
251-
- [Set-NetIntent](Set-NetIntent.md)
249+
[Set-NetIntent](Set-NetIntent.md)

docset/winserver2025-ps/NetworkATC/Get-AllNetIntents.md

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ Get-AllNetIntents [[-ClusterName] <String>] [[-ComputerName] <String>] [-GlobalO
2121

2222
## DESCRIPTION
2323

24-
The `Get-AllNetIntents` cmdlet retrieves all network intent configurations
25-
available based on the computer name or cluster name.
24+
The `Get-AllNetIntents` cmdlet retrieves all network intent configurations available based on the
25+
computer name or cluster name.
2626

2727
## EXAMPLES
2828

@@ -38,8 +38,8 @@ This example retrieves all network intent configurations from the `Server01` sta
3838

3939
### -ClusterName
4040

41-
Specifies the name of the cluster for which the network intent is to be
42-
retrieved. When used, the intent "floats" across the cluster.
41+
Specifies the name of the cluster for which the network intent is to be retrieved. When used, the
42+
intent "floats" across the cluster.
4343

4444
```yaml
4545
Type: String
@@ -55,10 +55,9 @@ Accept wildcard characters: False
5555
5656
### -ComputerName
5757
58-
Specifies the computer name of the target host on which the network
59-
intent configuration is to be retrieved. For standalone hosts, use the local
60-
computer name; for scenarios where the script is executed remotely, ensure the
61-
current user has administrative privileges on the target machine.
58+
Specifies the computer name of the target host on which the network intent configuration is to be
59+
retrieved. For standalone hosts, use the local computer name; for scenarios where the script is
60+
executed remotely, ensure the current user has administrative privileges on the target machine.
6261
6362
```yaml
6463
Type: String
@@ -90,11 +89,10 @@ Accept wildcard characters: False
9089
9190
### CommonParameters
9291
93-
This cmdlet supports the common parameters: -Debug, -ErrorAction,
94-
-ErrorVariable, -InformationAction, -InformationVariable, -OutVariable,
95-
-OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
96-
For more information, see
97-
[about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters).
92+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable,
93+
-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose,
94+
-WarningAction, and -WarningVariable. For more information, see
95+
[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).
9896
9997
## INPUTS
10098

docset/winserver2025-ps/NetworkATC/Get-HUDSwitchlessMapping.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ Get-HUDSwitchlessMapping [-ClusterName] <String> [<CommonParameters>]
2020

2121
## DESCRIPTION
2222

23-
The `Get-HUDSwitchlessMapping` cmdlet queries retrieves the configuration
24-
mapping for switchless operation within the HUD subsystem on the target cluster.
23+
The `Get-HUDSwitchlessMapping` cmdlet queries retrieves the configuration mapping for switchless
24+
operation within the HUD subsystem on the target cluster.
2525

2626
## EXAMPLES
2727

@@ -53,11 +53,10 @@ Accept wildcard characters: False
5353
5454
### CommonParameters
5555
56-
This cmdlet supports the common parameters: -Debug, -ErrorAction,
57-
-ErrorVariable, -InformationAction, -InformationVariable, -OutVariable,
58-
-OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
59-
For more information, see
60-
[about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters).
56+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable,
57+
-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose,
58+
-WarningAction, and -WarningVariable. For more information, see
59+
[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).
6160
6261
## INPUTS
6362

0 commit comments

Comments
 (0)