-
Notifications
You must be signed in to change notification settings - Fork 602
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into fix-wrong-parameter-name-netqos
- Loading branch information
Showing
3,978 changed files
with
855,032 additions
and
13,790 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,5 @@ | ||
blank_issues_enabled: true | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: What's the Quality Contributions Project? | ||
url: https://learn.microsoft.com/powershell/scripting/community/contributing/quality-improvements | ||
about: >- | ||
If you'd like to commit to improving quality for the documentation, before filing an issue, | ||
check the info and instructions. | ||
# - name: PowerShell Product Feedback | ||
# url: https://github.com/PowerShell/PowerShell/issues/new/choose | ||
# about: Please open feature requests for current PowerShell here. | ||
# - name: Support | ||
# url: https://learn.microsoft.com/powershell/scripting/community/community-support | ||
# about: PowerShell Support Questions/Help | ||
- name: New feedback experience | ||
url: https://learn.microsoft.com/office/new-feedback | ||
about: We’re transitioning our feedback experience away from GitHub Issues. For more information, select Open. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: Assign and label PR | ||
|
||
permissions: | ||
pull-requests: write | ||
contents: read | ||
actions: read | ||
|
||
on: | ||
workflow_run: | ||
workflows: [Background tasks] | ||
types: | ||
- completed | ||
|
||
jobs: | ||
download-payload: | ||
name: Download and extract payload artifact | ||
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-ExtractPayload.yml@workflows-prod | ||
with: | ||
WorkflowId: ${{ github.event.workflow_run.id }} | ||
OrgRepo: ${{ github.repository }} | ||
secrets: | ||
AccessToken: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
label-assign: | ||
name: Run assign and label | ||
needs: [download-payload] | ||
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-AutoLabelAssign.yml@workflows-prod | ||
with: | ||
PayloadJson: ${{ needs.download-payload.outputs.WorkflowPayload }} | ||
AutoAssignUsers: 1 | ||
AutoLabel: 1 | ||
ExcludedUserList: '["user1", "user2"]' | ||
ExcludedBranchList: '["branch1", "branch2"]' | ||
secrets: | ||
AccessToken: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Auto label Microsoft contributors | ||
|
||
permissions: | ||
pull-requests: write | ||
contents: read | ||
actions: read | ||
|
||
on: | ||
workflow_run: | ||
workflows: [Background tasks] | ||
types: | ||
- completed | ||
|
||
jobs: | ||
download-payload: | ||
if: github.repository_visibility == 'public' | ||
name: Download and extract payload artifact | ||
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-ExtractPayload.yml@workflows-prod | ||
with: | ||
WorkflowId: ${{ github.event.workflow_run.id }} | ||
OrgRepo: ${{ github.repository }} | ||
secrets: | ||
AccessToken: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
label-msft: | ||
name: Label Microsoft contributors | ||
if: github.repository_visibility == 'public' | ||
needs: [download-payload] | ||
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-AutoLabelMsftContributor.yml@workflows-prod | ||
with: | ||
PayloadJson: ${{ needs.download-payload.outputs.WorkflowPayload }} | ||
secrets: | ||
AccessToken: ${{ secrets.GITHUB_TOKEN }} | ||
TeamReadAccessToken: ${{ secrets.ORG_READTEAMS_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Background tasks | ||
|
||
permissions: | ||
pull-requests: write | ||
contents: read | ||
|
||
on: | ||
pull_request_target: | ||
|
||
jobs: | ||
upload: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Save payload data | ||
env: | ||
PayloadJson: ${{ toJSON(github) }} | ||
AccessToken: ${{ github.token }} | ||
run: | | ||
mkdir -p ./pr | ||
echo $PayloadJson > ./pr/PayloadJson.json | ||
sed -i -e "s/$AccessToken/XYZ/g" ./pr/PayloadJson.json | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: PayloadJson | ||
path: pr/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: PR can merge into branch | ||
|
||
permissions: | ||
pull-requests: write | ||
statuses: write | ||
contents: read | ||
|
||
on: | ||
pull_request_target: | ||
types: [opened, reopened, synchronize, edited] | ||
|
||
jobs: | ||
|
||
live-merge: | ||
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-LiveMergeCheck.yml@workflows-prod | ||
with: | ||
PayloadJson: ${{ toJSON(github) }} | ||
secrets: | ||
AccessToken: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: PR file count less than limit | ||
|
||
permissions: | ||
pull-requests: write | ||
statuses: write | ||
contents: read | ||
|
||
on: | ||
pull_request_target: | ||
types: [opened, reopened, synchronize, labeled, unlabeled, edited] | ||
|
||
jobs: | ||
|
||
file-count: | ||
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-PrFileCount.yml@workflows-prod | ||
with: | ||
PayloadJson: ${{ toJSON(github) }} | ||
secrets: | ||
AccessToken: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: PR has no protected files | ||
|
||
permissions: | ||
pull-requests: write | ||
statuses: write | ||
contents: read | ||
|
||
on: [pull_request_target] | ||
|
||
jobs: | ||
|
||
protected-files: | ||
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-ProtectedFiles.yml@workflows-prod | ||
with: | ||
PayloadJson: ${{ toJSON(github) }} | ||
secrets: | ||
AccessToken: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
|
||
# Each line is a file pattern followed by one or more owners. | ||
|
||
# Order is important! The last matching pattern has the most precedence. | ||
# So if a pull request only touches javascript files, only these owners | ||
# will be requested to review. | ||
|
||
/docset/ @roharwoo | ||
|
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
docset/docs-conceptual/winserver2016-ps/module-compatibility.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
items: | ||
- name: Windows PowerShell | ||
href: get-started.md | ||
- name: PowerShell 7 compatibility | ||
- name: PowerShell 7 compatibility in Windows Server 2016 | ||
href: module-compatibility.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
items: | ||
- name: Windows PowerShell | ||
href: get-started.md | ||
- name: PowerShell 7 compatibility | ||
- name: PowerShell 7 compatibility in Windows Server 2019 | ||
href: module-compatibility.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
docset/docs-conceptual/winserver2022-ps/module-compatibility.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
items: | ||
- name: Windows PowerShell | ||
href: get-started.md | ||
- name: PowerShell 7 compatibility | ||
- name: PowerShell 7 compatibility in Windows Server 2022 | ||
href: module-compatibility.md |
Oops, something went wrong.