Skip to content

Commit 0fb5b20

Browse files
committed
Merge branch 'main' of https://github.com/MicrosoftDocs/azure-docs-pr into us366769-vnet-toc
2 parents de1ab7c + 6cf6e76 commit 0fb5b20

File tree

4,707 files changed

+49435
-37440
lines changed

Some content is hidden

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

4,707 files changed

+49435
-37440
lines changed

.github/policies/disallow-edits.yml

Lines changed: 71 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ configuration:
1010
- payloadType: Pull_Request
1111
- isAction:
1212
action: Opened
13-
- or:
13+
- or:
1414
- filesMatchPattern:
1515
matchAny: true
1616
pattern: articles/aks/*
@@ -121,4 +121,74 @@ configuration:
121121
reply: >-
122122
@${issueAuthor} - You tried to add content to a folder path that has been removed from this repository. Your pull request will be automatically closed. Submit your changes to the updated repository, which can be identified by clicking the Edit this Document link at the top of any published article for that product or service.
123123
- closePullRequest
124+
125+
- description: Alert authors to edits in the /articles/reliability folder.
126+
if:
127+
# If a PR in the articles/reliability folder is opened, and the PR author isn't Anastasia or John...
128+
- payloadType: Pull_Request
129+
- filesMatchPattern:
130+
matchAny: true
131+
pattern: articles/reliability/*
132+
- isAction:
133+
action: Opened
134+
- not:
135+
or:
136+
- isActivitySender:
137+
user: anaharris-ms
138+
- isActivitySender:
139+
user: johndowns
140+
then:
141+
# Mention Anastasia and John, add a reply asking the PR author not to sign off on the PR, and add the needs-human-review label.
142+
- mentionUsers:
143+
mentionees:
144+
- anaharris-ms
145+
- johndowns
146+
replyTemplate: >-
147+
Tagging authors for this folder: ${mentionees}
148+
- addReply:
149+
reply: >-
150+
@${issueAuthor} - Please do NOT sign off on this pull request. The Reliability Hub owners will sign off for you.
151+
- addLabel:
152+
label: needs-human-review
153+
154+
- description: Disallow sign-off for articles in the /articles/reliability folder.
155+
if:
156+
# If a 'sign-off' comment is added to a PR in the articles/reliability folder , and the PR author isn't Anastasia or John...
157+
- payloadType: Issue_Comment
158+
- isPullRequest
159+
- filesMatchPattern:
160+
matchAny: true
161+
pattern: articles/reliability/*
162+
- commentContains:
163+
pattern: \#sign-off
164+
isRegex: false
165+
- not:
166+
or:
167+
- isActivitySender:
168+
user: anaharris-ms
169+
- isActivitySender:
170+
user: johndowns
171+
then:
172+
# Add the do-not-merge label, remove the ready-to-merge label, and add a reply asking the PR author not to sign off on the PR.
173+
- addReply:
174+
reply: >-
175+
@${issueAuthor} - Please do NOT sign off on this pull request. The Reliability Hub owners will sign off for you.
176+
- addLabel:
177+
label: do-not-merge
178+
- removeLabel:
179+
label: ready-to-merge
180+
181+
- description: Write a message if the breadcrumb file is modified in the azure-docs-pr repository.
182+
if:
183+
- payloadType: Pull_Request
184+
- isAction:
185+
action: Opened
186+
- filesMatchPattern:
187+
matchAny: true
188+
pattern: bread/*
189+
190+
then:
191+
- addReply:
192+
reply: >-
193+
@${issueAuthor} - This PR modifies the breadcrumb file for the entire repository: bread/toc.yml. This file supports the on-site navigation for 100s of services. Please make sure your changes to the breadcrumb file are intentional. Do not delete this file.
124194

.github/workflows/stale.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: Mark stale pull requests
2+
3+
permissions:
4+
issues: write
5+
pull-requests: write
6+
7+
on:
8+
schedule:
9+
- cron: "0 */6 * * *"
10+
11+
jobs:
12+
stale:
13+
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
- uses: actions/stale@v3
18+
with:
19+
repo-token: ${{ secrets.GITHUB_TOKEN }}
20+
days-before-pr-stale: 14
21+
days-before-pr-close: 90
22+
stale-pr-label: inactive
23+
close-pr-label: auto-close
24+
exempt-pr-labels: keep-open
25+
operations-per-run: 1300
26+
ascending: false
27+
# start-date: '2021-03-19'
28+
stale-pr-message: >
29+
This pull request has been inactive for at least 14 days.
30+
31+
If you are finished with your changes, don't forget to sign off. See the [platform guide](https://review.learn.microsoft.com/help/platform/prmerger-hashtag-commands?branch=main) for instructions.
32+
33+
[Get Help](https://review.learn.microsoft.com/help/platform/help-options?branch=main)
34+
35+
[Learn Support Teams Channel](https://teams.microsoft.com/l/channel/19%3a7ecffca1166a4a3986fed528cf0870ee%40thread.skype/General?groupId=de9ddba4-2574-4830-87ed-41668c07a1ca&tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47)
36+
37+
[Resolve Merge Conflicts](https://review.learn.microsoft.com/help/contribute/resolve-merge-conflicts?branch=main)
38+
close-pr-message: >
39+
This pull request has been inactive for 90 days, and an `auto-close` label has been added. At this time, the system is closing the PR automatically. If you decide to continue working on your changes, scroll to the bottom of the pull request comments and select the **Reopen pull request** button.
40+
<br/>

.openpublishing.redirection.json

Lines changed: 155 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,85 @@
11
{
22
"redirections": [
3+
{
4+
"source_path": "articles/migrate/tutorial-modernize-asp-net-aks.md",
5+
"redirect_url": "/azure/migrate/migrate-services-overview",
6+
"redirect_document_id": false
7+
},
8+
{
9+
"source_path": "articles/databox-online/azure-stack-edge-gpu-deploy-sample-module-marketplace.md",
10+
"redirect_url": "https://azuremarketplace.microsoft.com/marketplace/apps?page=1",
11+
"redirect_document_id": false
12+
},
13+
{
14+
"source_path": "articles/partner-solutions/logzio/create.md",
15+
"redirect_url": "/previous-versions/azure/partner-solutions/logzio/create",
16+
"redirect_document_id": false
17+
},
18+
{
19+
"source_path": "articles/partner-solutions/logzio/manage.md",
20+
"redirect_url": "/previous-versions/azure/partner-solutions/logzio/manage",
21+
"redirect_document_id": false
22+
},
23+
{
24+
"source_path": "articles/partner-solutions/logzio/overview.md",
25+
"redirect_url": "/previous-versions/azure/partner-solutions/logzio/overview",
26+
"redirect_document_id": false
27+
},
28+
{
29+
"source_path": "articles/partner-solutions/logzio/setup-sso.md",
30+
"redirect_url": "/previous-versions/azure/partner-solutions/logzio/setup-sso",
31+
"redirect_document_id": false
32+
},
33+
{
34+
"source_path": "articles/partner-solutions/logzio/troubleshoot.md",
35+
"redirect_url": "/previous-versions/azure/partner-solutions/logzio/troubleshoot",
36+
"redirect_document_id": false
37+
},
38+
{
39+
"source_path": "articles/event-grid/event-schema-storage-actions.md",
40+
"redirect_url": "/azure/storage-actions/overview",
41+
"redirect_document_id": false
42+
},
43+
{
44+
"source_path_from_root": "/articles/hdinsight-aks/index.yml",
45+
"redirect_url": "/previous-versions/azure/hdinsight-aks",
46+
"redirect_document_id": false
47+
},
48+
{
49+
"source_path_from_root": "/articles/hdinsight-aks/flink/index.md",
50+
"redirect_url": "/previous-versions/azure/hdinsight-aks/flink/flink-overview",
51+
"redirect_document_id": false
52+
},
53+
{
54+
"source_path_from_root": "/articles/hdinsight-aks/prerequisites-subscription.md",
55+
"redirect_url": "/previous-versions/azure/hdinsight-aks/quickstart-prerequisites-subscription",
56+
"redirect_document_id": false
57+
},
58+
{
59+
"source_path_from_root": "/articles/hdinsight-aks/release-notes/index.md",
60+
"redirect_url": "/previous-versions/azure/hdinsight-aks/release-notes/hdinsight-aks-release-notes",
61+
"redirect_document_id": false
62+
},
63+
{
64+
"source_path_from_root": "/articles/hdinsight-aks/prerequisites-resources.md",
65+
"redirect_url": "/previous-versions/azure/hdinsight-aks/quickstart-prerequisites-resources",
66+
"redirect_document_id": false
67+
},
68+
{
69+
"source_path_from_root": "/articles/hdinsight-aks/spark/index.md",
70+
"redirect_url": "/previous-versions/azure/hdinsight-aks/spark/hdinsight-on-aks-spark-overview",
71+
"redirect_document_id": false
72+
},
73+
{
74+
"source_path_from_root": "/articles/hdinsight-aks/get-started.md",
75+
"redirect_url": "/previous-versions/azure/hdinsight-aks/quickstart-get-started",
76+
"redirect_document_id": false
77+
},
78+
{
79+
"source_path_from_root": "/articles/hdinsight-aks/trino/index.md",
80+
"redirect_url": "/previous-versions/azure/hdinsight-aks/trino/trino-overview ",
81+
"redirect_document_id": false
82+
},
383
{
484
"source_path": "articles/hdinsight-aks/cluster-storage.md",
585
"redirect_url": "/previous-versions/azure/hdinsight-aks/cluster-storage",
@@ -968,7 +1048,7 @@
9681048
{
9691049
"source_path": "articles/defender-for-iot/organizations/legacy-central-management/how-to-troubleshoot-on-premises-management-console.md",
9701050
"redirect_url": "/previous-versions/azure/defender-for-iot/organizations/legacy-central-management/how-to-troubleshoot-on-premises-management-console",
971-
"redirect_document_id": false
1051+
"redirect_document_id": false
9721052
},
9731053
{
9741054
"source_path": "articles/defender-for-iot/organizations/legacy-central-management/legacy-air-gapped-deploy.md",
@@ -1020,6 +1100,11 @@
10201100
"redirect_url": "/azure/migrate/discover-and-assess-using-private-endpoints",
10211101
"redirect_document_id": false
10221102
},
1103+
{
1104+
"source_path": "articles/operator-call-protection/index.yml",
1105+
"redirect_url": "https://learn.microsoft.com",
1106+
"redirect_document_id": false
1107+
},
10231108
{
10241109
"source_path": "articles/operator-5g-core/index.yml",
10251110
"redirect_url": "https://learn.microsoft.com",
@@ -1455,7 +1540,7 @@
14551540
"redirect_url": "/previous-versions/azure/partner-solutions/split-experimentation/troubleshoot",
14561541
"redirect_document_id": false
14571542
},
1458-
{
1543+
{
14591544
"source_path": "articles/virtual-desktop/virtual-desktop-fall-2019/classic-retirement.md",
14601545
"redirect_url": "/previous-versions/azure/virtual-desktop-classic/classic-retirement",
14611546
"redirect_document_id": false
@@ -1810,6 +1895,11 @@
18101895
"redirect_url": "/azure/azure-app-configuration/howto-variant-feature-flags-aspnet-core",
18111896
"redirect_document_id": false
18121897
},
1898+
{
1899+
"source_path_from_root": "/articles/azure-app-configuration/use-feature-flags-dotnet-core.md",
1900+
"redirect_url": "/azure/azure-app-configuration/feature-management-dotnet-reference",
1901+
"redirect_document_id": false
1902+
},
18131903
{
18141904
"source_path_from_root": "/articles/public-multi-access-edge-compute-mec/considerations-for-deployment.md",
18151905
"redirect_url": "/previous-versions/azure/public-multi-access-edge-compute-mec/considerations-for-deployment",
@@ -1975,6 +2065,21 @@
19752065
"redirect_url": "./azure-resource-manager/management/deployment-models",
19762066
"redirect_document_id": false
19772067
},
2068+
{
2069+
"source_path_from_root": "/articles/azure-functions/functions-add-output-binding-storage-queue-java.md",
2070+
"redirect_url": "/azure/azure-functions/functions-add-output-binding-storage-queue-cli?pivots=programming-language-java",
2071+
"redirect_document_id": false
2072+
},
2073+
{
2074+
"source_path_from_root": "/articles/azure-functions/create-first-function-arc-custom-container.md",
2075+
"redirect_url": "/azure/azure-functions/functions-how-to-custom-container?pivots=azure-arc",
2076+
"redirect_document_id": false
2077+
},
2078+
{
2079+
"source_path_from_root": "/articles/azure-functions/create-first-function-arc-cli.md",
2080+
"redirect_url": "/azure/azure-functions/functions-how-to-custom-container?pivots=azure-arc",
2081+
"redirect_document_id": false
2082+
},
19782083
{
19792084
"source_path_from_root": "/articles/azure-functions/create-first-function-vs-code-web.md",
19802085
"redirect_url": "/azure/azure-functions",
@@ -2944,7 +3049,8 @@
29443049
"source_path_from_root": "/articles/ddos-protection/telemetry-monitoring-alerting.md",
29453050
"redirect_url": "/azure/ddos-protection/telemetry",
29463051
"redirect_document_id": false
2947-
}, {
3052+
},
3053+
{
29483054
"source_path_from_root": "/articles/ddos-protection/telemetry.md",
29493055
"redirect_url": "/azure/ddos-protection/monitor-ddos-protection",
29503056
"redirect_document_id": false
@@ -3238,7 +3344,7 @@
32383344
"source_path_from_root": "/articles/dns/dns-alerts-metrics.md",
32393345
"redirect_url": "/azure/dns/monitor-dns",
32403346
"redirect_document_id": false
3241-
},
3347+
},
32423348
{
32433349
"source_path_from_root": "/articles/docker/index.yml",
32443350
"redirect_url": "/dotnet/architecture/microservices/container-docker-introduction/docker-defined",
@@ -5149,16 +5255,31 @@
51495255
"redirect_url": "/azure/virtual-wan/virtual-wan-about",
51505256
"redirect_document_id": false
51515257
},
5258+
{
5259+
"source_path_from_root": "/articles/virtual-wan/openvpn-azure-ad-client.md",
5260+
"redirect_url": "/azure/virtual-wan/point-to-site-entra-vpn-client-windows",
5261+
"redirect_document_id": false
5262+
},
51525263
{
51535264
"source_path_from_root": "/articles/virtual-wan/high-availability-vpn-client.md",
51545265
"redirect_url": "/azure/virtual-wan/global-hub-profile",
51555266
"redirect_document_id": false
51565267
},
5268+
{
5269+
"source_path_from_root": "/articles/virtual-wan/howto-openvpn-clients.md",
5270+
"redirect_url": "/azure/virtual-wan/point-to-site-vpn-client-certificate-windows-openvpn-client-version-3",
5271+
"redirect_document_id": false
5272+
},
51575273
{
51585274
"source_path_from_root": "/articles/virtual-wan/logs-metrics.md",
51595275
"redirect_url": "/azure/virtual-wan/monitor-virtual-wan",
51605276
"redirect_document_id": false
51615277
},
5278+
{
5279+
"source_path_from_root": "/articles/virtual-wan/openvpn-azure-ad-client-mac.md",
5280+
"redirect_url": "/azure/virtual-wan/point-to-site-entra-vpn-client-mac",
5281+
"redirect_document_id": false
5282+
},
51625283
{
51635284
"source_path_from_root": "/articles/virtual-wan/monitoring-best-practices.md",
51645285
"redirect_url": "/azure/virtual-wan/monitor-virtual-wan",
@@ -5598,8 +5719,8 @@
55985719
"source_path_from_root": "/articles/defender-for-iot/device-builders/defender-iot-firmware-analysis-rbac.md",
55995720
"redirect_url": "/azure/firmware-analysis/overview-firmware-analysis",
56005721
"redirect_document_id": false
5601-
},
5602-
{
5722+
},
5723+
{
56035724
"source_path_from_root": "/articles/virtual-network/ip-services/public-ip-upgrade-portal.md",
56045725
"redirect_url": "/azure/virtual-network/ip-services/public-ip-upgrade",
56055726
"redirect_document_id": false
@@ -5653,7 +5774,7 @@
56535774
"source_path_from_root": "/articles/load-balancer/move-across-regions-external-load-balancer-powershell.md",
56545775
"redirect_url": "/azure/load-balancer/move-across-regions-azure-load-balancer",
56555776
"redirect_document_id": false
5656-
},
5777+
},
56575778
{
56585779
"source_path_from_root": "/articles/load-balancer/move-across-regions-internal-load-balancer-portal.md",
56595780
"redirect_url": "/azure/load-balancer/move-across-regions-azure-load-balancer",
@@ -5762,7 +5883,7 @@
57625883
{
57635884
"source_path": "articles/virtual-desktop/troubleshoot-management-issues.md",
57645885
"redirect_url": "/troubleshoot/azure/virtual-desktop/troubleshoot-management-issues",
5765-
"redirect_document_id": false
5886+
"redirect_document_id": false
57665887
},
57675888
{
57685889
"source_path": "articles/virtual-desktop/troubleshoot-multimedia-redirection.md",
@@ -5823,6 +5944,31 @@
58235944
"source_path_from_root": "/articles/reliability/reliability-hdinsight-on-aks.md",
58245945
"redirect_url": "/azure/reliability/overview-reliability-guidance",
58255946
"redirect_document_id": false
5826-
}
5947+
},
5948+
{
5949+
"source_path_from_root": "/articles/reliability/sovereign-cloud-china.md",
5950+
"redirect_url": "/azure/china/concepts-service-availability",
5951+
"redirect_document_id": false
5952+
},
5953+
{
5954+
"source_path_from_root": "/articles/managed-grafana/concept-role-based-access-control.md",
5955+
"redirect_url": "/azure/managed-grafana/how-to-manage-access-permissions-users-identities",
5956+
"redirect_document_id": false
5957+
},
5958+
{
5959+
"source_path_from_root": "/articles/managed-grafana/how-to-share-grafana-workspace.md",
5960+
"redirect_url": "/azure/managed-grafana/how-to-manage-access-permissions-users-identities",
5961+
"redirect_document_id": false
5962+
},
5963+
{
5964+
"source_path": "articles/sentinel/resources.md",
5965+
"redirect_url": "/azure/sentinel/overview",
5966+
"redirect_document_id": false
5967+
},
5968+
{
5969+
"source_path_from_root": "/articles/nat-gateway/tutorial-dual-stack-outbound-nat-load-balancer.md",
5970+
"redirect_url": "/azure/nat-gateway/nat-overview",
5971+
"redirect_document_id": false
5972+
},
58275973
]
58285974
}

articles/active-directory-b2c/access-tokens.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ manager: CelesteDG
88
ms.service: azure-active-directory
99

1010
ms.topic: concept-article
11-
ms.date: 01/11/2024
11+
ms.date: 02/17/2025
1212
ms.author: kengaderdus
1313
ms.subservice: b2c
1414

0 commit comments

Comments
 (0)