|
62 | 62 | TargetOrganization: "MicrosoftDocs" |
63 | 63 | TargetRepository: "microsoft-365-docs-pr" |
64 | 64 | TargetPath: "microsoft-365/includes" |
65 | | - EndpointsContentOwner: "kelleyvice-msft" |
| 65 | + EndpointsContentOwner: "VargheseSivi" |
66 | 66 | PrivateKey: ${{ secrets.M365_APP_PRIVATE_KEY }} |
67 | 67 | ClientId: ${{ secrets.M365_APP_CLIENT_ID }} |
68 | 68 | run: | |
|
72 | 72 | # Script updated for Azure Torus 2-September-2020 by David Strome [email protected] |
73 | 73 | # Script updated for GitHub workflows 10-September-2024 by David Strome [email protected] |
74 | 74 | # Script updated to use M365 Skilling Repo Management app for auth 6-March-2025 by David Strome [email protected] |
| 75 | + # Script updated to add France as an available instance 21-August-2025 by David Strome [email protected] |
75 | 76 |
|
76 | 77 | <# |
77 | 78 | This script retreives Office 365 endpoint sets for each service instance |
@@ -256,6 +257,7 @@ jobs: |
256 | 257 | $script:siHash = @{} |
257 | 258 | $siHash.China = "Office 365 operated by 21Vianet" |
258 | 259 | $siHash.Germany = "Office 365 Germany" |
| 260 | + $siHash.France = "Office 365 France" |
259 | 261 | $siHash.USGovDoD = "Office 365 U.S. Government DoD" |
260 | 262 | $siHash.USGovGCCHigh = "Office 365 U.S. Government GCC High" |
261 | 263 | $siHash.Worldwide = "Office 365 Worldwide" |
@@ -563,10 +565,15 @@ jobs: |
563 | 565 | function Write-ServiceAreaHeader { |
564 | 566 | param($saName, $path, $file) |
565 | 567 |
|
566 | | - Write-Host "Write service header for $saName" |
| 568 | + If (($saName -ne "") -and ($saName -ne $Null)) { |
567 | 569 |
|
568 | | - # Add a header with the service area name to the output file |
569 | | - "`n## " + $saName + "`n" | Out-File -Append -FilePath ($path + $file) |
| 570 | + Write-Host "Write service header for $saName" |
| 571 | +
|
| 572 | + # Add a header with the service area name to the output file |
| 573 | + "`n## " + $saName + "`n" | Out-File -Append -FilePath ($path + $file) |
| 574 | + |
| 575 | + } |
| 576 | + |
570 | 577 | } # end function Write-ServiceAreaHeader |
571 | 578 |
|
572 | 579 | function ConvertTo-EndpointObject { |
@@ -902,3 +909,7 @@ jobs: |
902 | 909 | with: |
903 | 910 | name: RunData |
904 | 911 | path: "${{ github.workspace }}/run-data/endpoints*" |
| 912 | + |
| 913 | + |
| 914 | + |
| 915 | + |
0 commit comments