diff --git a/.github/workflows/AutoLabelAssign.yml b/.github/workflows/AutoLabelAssign.yml index 8247aa8e9..65e87b3d4 100644 --- a/.github/workflows/AutoLabelAssign.yml +++ b/.github/workflows/AutoLabelAssign.yml @@ -14,6 +14,7 @@ on: jobs: download-payload: name: Download and extract payload artifact + if: github.repository_owner == 'MicrosoftDocs' uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-ExtractPayload.yml@workflows-prod with: WorkflowId: ${{ github.event.workflow_run.id }} @@ -23,6 +24,7 @@ jobs: label-assign: name: Run assign and label + if: github.repository_owner == 'MicrosoftDocs' needs: [download-payload] uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-AutoLabelAssign.yml@workflows-prod with: @@ -32,10 +34,4 @@ jobs: ExcludedUserList: '["user1", "user2"]' ExcludedBranchList: '["branch1", "branch2"]' secrets: - AccessToken: ${{ secrets.GITHUB_TOKEN }} - - - - - - + AccessToken: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file diff --git a/.github/workflows/AutoLabelMsftContributor.yml b/.github/workflows/AutoLabelMsftContributor.yml index c41825acc..6fcfb6e43 100644 --- a/.github/workflows/AutoLabelMsftContributor.yml +++ b/.github/workflows/AutoLabelMsftContributor.yml @@ -13,7 +13,7 @@ on: jobs: download-payload: - if: github.repository_visibility == 'public' + if: github.repository_owner == 'MicrosoftDocs' && github.repository_visibility == 'public' name: Download and extract payload artifact uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-ExtractPayload.yml@workflows-prod with: @@ -24,7 +24,7 @@ jobs: label-msft: name: Label Microsoft contributors - if: github.repository_visibility == 'public' + if: github.repository_owner == 'MicrosoftDocs' && github.repository_visibility == 'public' needs: [download-payload] uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-AutoLabelMsftContributor.yml@workflows-prod with: @@ -32,4 +32,4 @@ jobs: secrets: AccessToken: ${{ secrets.GITHUB_TOKEN }} ClientId: ${{ secrets.M365_APP_CLIENT_ID }} - PrivateKey: ${{ secrets.M365_APP_PRIVATE_KEY }} + PrivateKey: ${{ secrets.M365_APP_PRIVATE_KEY }} \ No newline at end of file diff --git a/.github/workflows/BackgroundTasks.yml b/.github/workflows/BackgroundTasks.yml index c0389bb25..8dc3ceae0 100644 --- a/.github/workflows/BackgroundTasks.yml +++ b/.github/workflows/BackgroundTasks.yml @@ -9,6 +9,7 @@ on: jobs: upload: + if: github.repository_owner == 'MicrosoftDocs' runs-on: ubuntu-latest steps: @@ -23,4 +24,4 @@ jobs: - uses: actions/upload-artifact@v4 with: name: PayloadJson - path: pr/ + path: pr/ \ No newline at end of file diff --git a/.github/workflows/BuildValidation.yml b/.github/workflows/BuildValidation.yml index e57844b45..dadccacbe 100644 --- a/.github/workflows/BuildValidation.yml +++ b/.github/workflows/BuildValidation.yml @@ -11,11 +11,9 @@ on: jobs: build-status: + if: github.repository_owner == 'MicrosoftDocs' uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-BuildValidation.yml@workflows-prod with: PayloadJson: ${{ toJSON(github) }} secrets: AccessToken: ${{ secrets.GITHUB_TOKEN }} - - - diff --git a/.github/workflows/LiveMergeCheck.yml b/.github/workflows/LiveMergeCheck.yml index faeb2a0ef..7db35548e 100644 --- a/.github/workflows/LiveMergeCheck.yml +++ b/.github/workflows/LiveMergeCheck.yml @@ -12,11 +12,9 @@ on: jobs: live-merge: + if: github.repository_owner == 'MicrosoftDocs' uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-LiveMergeCheck.yml@workflows-prod with: PayloadJson: ${{ toJSON(github) }} secrets: - AccessToken: ${{ secrets.GITHUB_TOKEN }} - - - \ No newline at end of file + AccessToken: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file diff --git a/.github/workflows/PrFileCount.yml b/.github/workflows/PrFileCount.yml index 40f7d6162..17faf7a21 100644 --- a/.github/workflows/PrFileCount.yml +++ b/.github/workflows/PrFileCount.yml @@ -12,11 +12,9 @@ on: jobs: file-count: + if: github.repository_owner == 'MicrosoftDocs' uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-PrFileCount.yml@workflows-prod with: PayloadJson: ${{ toJSON(github) }} secrets: - AccessToken: ${{ secrets.GITHUB_TOKEN }} - - - + AccessToken: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file diff --git a/.github/workflows/ProtectedFiles.yml b/.github/workflows/ProtectedFiles.yml index 007f8f04b..bbdbbe2e4 100644 --- a/.github/workflows/ProtectedFiles.yml +++ b/.github/workflows/ProtectedFiles.yml @@ -10,11 +10,9 @@ on: [pull_request_target] jobs: protected-files: + if: github.repository_owner == 'MicrosoftDocs' uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-ProtectedFiles.yml@workflows-prod with: PayloadJson: ${{ toJSON(github) }} secrets: - AccessToken: ${{ secrets.GITHUB_TOKEN }} - - - \ No newline at end of file + AccessToken: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file diff --git a/.github/workflows/Stale.yml b/.github/workflows/Stale.yml index dec280f77..7f262d325 100644 --- a/.github/workflows/Stale.yml +++ b/.github/workflows/Stale.yml @@ -11,6 +11,7 @@ on: jobs: stale: + if: github.repository_owner == 'MicrosoftDocs' uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-Stale.yml@workflows-prod with: RunDebug: false diff --git a/.github/workflows/StaleBranch.yml b/.github/workflows/StaleBranch.yml index 470eadbd3..f55d97929 100644 --- a/.github/workflows/StaleBranch.yml +++ b/.github/workflows/StaleBranch.yml @@ -13,6 +13,7 @@ on: jobs: stale-branch: + if: github.repository_owner == 'MicrosoftDocs' uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-StaleBranch.yml@workflows-prod with: PayloadJson: ${{ toJSON(github) }} @@ -22,4 +23,4 @@ jobs: ]' ReportOnly: true secrets: - AccessToken: ${{ secrets.GITHUB_TOKEN }} + AccessToken: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file diff --git a/.github/workflows/TierManagement.yml b/.github/workflows/TierManagement.yml index c9aedb08b..47baf0be6 100644 --- a/.github/workflows/TierManagement.yml +++ b/.github/workflows/TierManagement.yml @@ -11,11 +11,11 @@ on: jobs: tier-mgmt: - if: github.repository_visibility == 'private' + if: github.repository_owner == 'MicrosoftDocs' && github.repository_visibility == 'private' uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-TierManagement.yml@workflows-prod with: PayloadJson: ${{ toJSON(github) }} EnableWriteSignOff: 1 EnableReadOnlySignoff: 1 secrets: - AccessToken: ${{ secrets.GITHUB_TOKEN }} + AccessToken: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md b/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md index d99791678..1d29bfb17 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md @@ -15,6 +15,8 @@ ms.reviewer: ## SYNOPSIS Adds a new SPO app prioritization Policy to your tenancy. +> [!NOTE] +> This functionality is rolling out and might not be fully enabled in your environment yet. ## SYNTAX @@ -108,7 +110,7 @@ Accept wildcard characters: False ``` ### -QuotaMultiplier -This parameter specifies the multiplier for the scaling feature. +This parameter specifies the multiplier for the scaling feature. Value must be between 2 and 10. ```yaml Type: int diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md b/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md index 1673f04cf..49a908a05 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md @@ -15,6 +15,8 @@ ms.reviewer: ## SYNOPSIS Gets all existing SPO app prioritization policies of your tenancy. +> [!NOTE] +> This functionality is rolling out and might not be fully enabled in your environment yet. ## SYNTAX diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md b/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md index 57cd71cd3..74f412757 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md @@ -15,6 +15,8 @@ ms.reviewer: ## SYNOPSIS Deletes an existing SPO app prioritization policy in your tenancy. +> [!NOTE] +> This functionality is rolling out and might not be fully enabled in your environment yet. ## SYNTAX diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md b/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md index 941bd8ecd..41b627488 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md @@ -14,7 +14,9 @@ ms.reviewer: ## SYNOPSIS -Edits an existing SPO app prioritization policy in your tenancy. +Edits an existing SPO app prioritization policy in your tenancy. +> [!NOTE] +> This functionality is rolling out and might not be fully enabled in your environment yet. ## SYNTAX @@ -90,7 +92,7 @@ Accept wildcard characters: False ### -QuotaMultiplier -This parameter specifies the quota multiplier limit for the scaling feature. Value must be between 1 and 10. +This parameter specifies the quota multiplier limit for the scaling feature. Value must be between 2 and 10. ```yaml Type: int