Skip to content

Commit aaf4fc7

Browse files
committed
Merge branch 'main' into remove_failure-converting-to-managed-solution
2 parents 12954e4 + 7be3aac commit aaf4fc7

File tree

2,043 files changed

+21498
-10265
lines changed

Some content is hidden

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

2,043 files changed

+21498
-10265
lines changed

.github/workflows/auto_publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
name: Auto push to live
22

33
on:
4-
schedule:
4+
# schedule:
55
# Run at 10:00 a.m., 6:00 p.m., and 2:00 a.m. UTC
6-
- cron: "0 10 * * *"
7-
- cron: "0 18 * * *"
8-
- cron: "0 2 * * *"
6+
# - cron: "0 10 * * *"
7+
# - cron: "0 18 * * *"
8+
# - cron: "0 2 * * *"
99

1010
workflow_dispatch:
1111

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: Create Azure DevOps CI on PR
2+
3+
on:
4+
pull_request:
5+
types: [opened]
6+
7+
jobs:
8+
create-work-item:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Create Azure DevOps Task
12+
env:
13+
ADO_ORG_URL: https://dev.azure.com/KMOps
14+
ADO_PROJECT: ContentExperience
15+
ADO_PAT: ${{ secrets.ADO_PAT }}
16+
run: |
17+
PR_TITLE="${{ github.event.pull_request.title }}"
18+
PR_BODY="${{ github.event.pull_request.body }}"
19+
PR_URL="${{ github.event.pull_request.html_url }}"
20+
21+
curl -X POST \
22+
-H "Content-Type: application/json-patch+json" \
23+
-H "Authorization: Basic $(echo -n ":$ADO_PAT" | base64)" \
24+
$ADO_ORG_URL/$ADO_PROJECT/_apis/wit/workitems/$ExternalCI?api-version=6.0 \
25+
-d '[
26+
{
27+
"op": "add",
28+
"path": "/fields/System.Title",
29+
"value": "PR Opened: '"$PR_TITLE"'"
30+
},
31+
{
32+
"op": "add",
33+
"path": "/fields/System.Description",
34+
"value": "Pull Request URL: '"$PR_URL"'\n\n'"$PR_BODY"'"
35+
}
36+
]'

.openpublishing.publish.config.json

Lines changed: 18 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -132,17 +132,17 @@
132132
}
133133
],
134134
"notification_subscribers": [
135-
"luche@microsoft.com",
136-
"haiyingyu@microsoft.com",
137-
"delhan@microsoft.com",
138-
"Lin.Gen@microsoft.com"
135+
"meerak@microsoft.com",
136+
"aartigoyle@microsoft.com",
137+
"kaushika@microsoft.com",
138+
"jarrettr@microsoft.com"
139139
],
140140
"sync_notification_subscribers": [
141-
"christys@microsoft.com",
142-
" delhan@microsoft.com",
143-
" luche@microsoft.com",
144-
" haiyingyu@microsoft.com",
145-
" lin.gen@microsoft.com",
141+
"aartigoyle@microsoft.com",
142+
" kaushika@microsoft.com",
143+
" meerak@microsoft.com",
144+
" aartigoyle@microsoft.com",
145+
" jarrettr@microsoft.com",
146146
147147
],
148148
"branches_to_filter": [],
@@ -193,11 +193,16 @@
193193
"redirection_files": [
194194
".openpublishing.redirection.json",
195195
".openpublishing.redirection.developer.json",
196+
".openpublishing.redirection.exchange.json",
197+
".openpublishing.redirection.microsoft365.json",
198+
".openpublishing.redirection.office.json",
199+
".openpublishing.redirection.outlook.json",
200+
".openpublishing.redirection.SharePoint.json",
201+
".openpublishing.redirection.skypeforbusiness.json",
202+
".openpublishing.redirection.teams.json",
203+
".openpublishing.redirection.viva.json",
196204
"support/azure/.openpublishing.redirection.azure.json",
197-
"support/system-center/.openpublishing.redirection.systemcenter.json",
198-
"SkypeForBusiness/.openpublishing.redirection.skypeforbusiness.json",
199-
"SharePoint/.openpublishing.redirection.SharePoint.json",
200-
"Microsoft365/.openpublishing.redirection.microsoft365.json"
205+
"support/system-center/.openpublishing.redirection.systemcenter.json"
201206
],
202207
"need_generate_pdf_url_template": true
203208
}

.openpublishing.redirection.developer.json

Lines changed: 96 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6718,6 +6718,102 @@
67186718
{
67196719
"source_path": "support/developer/dotnet/framework/installation/patching-framework-fails.md",
67206720
"redirect_url": "/previous-versions/troubleshoot/dotnet/framework/patching-framework-fails"
6721+
},
6722+
{
6723+
"source_path": "support/developer/dotnet/wcf/service-throws-exception.md",
6724+
"redirect_url": "/previous-versions/troubleshoot/dotnet/wcf/service-throws-exception"
6725+
},
6726+
{
6727+
"source_path": "support/developer/dotnet/wcf/asynchronous-service-use-wrong-impersonation.md",
6728+
"redirect_url": "/previous-versions/troubleshoot/dotnet/wcf/asynchronous-service-use-wrong-impersonation"
6729+
},
6730+
{
6731+
"source_path": "support/developer/dotnet/wcf/call-timed-out-aspnet-mvc-controller.md",
6732+
"redirect_url": "/previous-versions/troubleshoot/dotnet/wcf/call-timed-out-aspnet-mvc-controller"
6733+
},
6734+
{
6735+
"source_path": "support/developer/dotnet/wcf/cannot-validate-run-workflow.md",
6736+
"redirect_url": "/previous-versions/troubleshoot/dotnet/wcf/cannot-validate-run-workflow"
6737+
},
6738+
{
6739+
"source_path": "support/developer/dotnet/wcf/wcf-extensions-concurrent-request-run-sequentially.md",
6740+
"redirect_url": "/previous-versions/troubleshoot/dotnet/wcf/wcf-extensions-concurrent-request-run-sequentially"
6741+
},
6742+
{
6743+
"source_path": "support/developer/dotnet/wcf/disconnects-http-bindings.md",
6744+
"redirect_url": "/previous-versions/troubleshoot/dotnet/wcf/disconnects-http-bindings"
6745+
},
6746+
{
6747+
"source_path": "support/developer/dotnet/wcf/endpoint-address-use-the-discovery-client-channel.md",
6748+
"redirect_url": "/previous-versions/troubleshoot/dotnet/wcf/endpoint-address-use-the-discovery-client-channel"
6749+
},
6750+
{
6751+
"source_path": "support/developer/dotnet/wcf/error-create-performance-counters.md",
6752+
"redirect_url": "/previous-versions/troubleshoot/dotnet/wcf/error-create-performance-counters"
6753+
},
6754+
{
6755+
"source_path": "support/developer/dotnet/wcf/error-occurs-remove-an-appfabric-cluster-server.md",
6756+
"redirect_url": "/previous-versions/troubleshoot/dotnet/wcf/error-occurs-remove-an-appfabric-cluster-server"
6757+
},
6758+
{
6759+
"source_path": "support/developer/dotnet/wcf/error-disable-non-http-activation.md",
6760+
"redirect_url": "/previous-versions/troubleshoot/dotnet/wcf/error-disable-non-http-activation"
6761+
},
6762+
{
6763+
"source_path": "support/developer/dotnet/wcf/error-service-use-activation.md",
6764+
"redirect_url": "/previous-versions/troubleshoot/dotnet/wcf/error-service-use-activation"
6765+
},
6766+
{
6767+
"source_path": "support/developer/dotnet/wcf/error-discovery-udp.md",
6768+
"redirect_url": "/previous-versions/troubleshoot/dotnet/wcf/error-discovery-udp"
6769+
},
6770+
{
6771+
"source_path": "support/developer/dotnet/wcf/fail-install-wif.md",
6772+
"redirect_url": "/previous-versions/troubleshoot/dotnet/wcf/fail-install-wif"
6773+
},
6774+
{
6775+
"source_path": "support/developer/dotnet/wcf/kerberos-not-used-call-service.md",
6776+
"redirect_url": "/previous-versions/troubleshoot/dotnet/wcf/kerberos-not-used-call-service"
6777+
},
6778+
{
6779+
"source_path": "support/developer/dotnet/wcf/precompiled-workflow-activation-fails.md",
6780+
"redirect_url": "/previous-versions/troubleshoot/dotnet/wcf/precompiled-workflow-activation-fails"
6781+
},
6782+
{
6783+
"source_path": "support/developer/dotnet/wcf/rest-generate-metadata-wsdl.md",
6784+
"redirect_url": "/previous-versions/troubleshoot/dotnet/wcf/rest-generate-metadata-wsdl"
6785+
},
6786+
{
6787+
"source_path": "support/developer/dotnet/wcf/service-does-not-start-automatically.md",
6788+
"redirect_url": "/previous-versions/troubleshoot/dotnet/wcf/service-does-not-start-automatically"
6789+
},
6790+
{
6791+
"source_path": "support/developer/dotnet/wcf/service-scale-up-slowly.md",
6792+
"redirect_url": "/previous-versions/troubleshoot/dotnet/wcf/service-scale-up-slowly"
6793+
},
6794+
{
6795+
"source_path": "support/developer/dotnet/wcf/service-operations-use-wrong-impersonation-context.md",
6796+
"redirect_url": "/previous-versions/troubleshoot/dotnet/wcf/service-operations-use-wrong-impersonation-context"
6797+
},
6798+
{
6799+
"source_path": "support/developer/dotnet/wcf/service-use-a-non-default-etw-provider-id.md",
6800+
"redirect_url": "/previous-versions/troubleshoot/dotnet/wcf/service-use-a-non-default-etw-provider-id"
6801+
},
6802+
{
6803+
"source_path": "support/developer/dotnet/wcf/socketexception-connection-pooling.md",
6804+
"redirect_url": "/previous-versions/troubleshoot/dotnet/wcf/socketexception-connection-pooling"
6805+
},
6806+
{
6807+
"source_path": "support/developer/dotnet/wcf/x509certificatevalidator-service-certificate.md",
6808+
"redirect_url": "/previous-versions/troubleshoot/dotnet/wcf/x509certificatevalidator-service-certificate"
6809+
},
6810+
{
6811+
"source_path": "support/developer/dotnet/wcf/wcf-net-tcp-service-stop-response.md",
6812+
"redirect_url": "/previous-versions/troubleshoot/dotnet/wcf/wcf-net-tcp-service-stop-response"
6813+
},
6814+
{
6815+
"source_path": "support/developer/dotnet/wcf/workflow-service-cannot-receive-messages-in-order.md",
6816+
"redirect_url": "/previous-versions/troubleshoot/dotnet/wcf/workflow-service-cannot-receive-messages-in-order"
67216817
}
67226818
]
67236819
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"redirections": [
3+
{
4+
"source_path": "Exchange/ExchangeOnline/mobile-devices/outlook-app-access-end-after-june-1-if-ews-app-policies-not-set-correctly.md",
5+
"redirect_url": "/previous-versions/troubleshoot/exchange/exchangeonline/outlook-app-access-end-after-june-1-if-ews-app-policies-not-set-correctly"
6+
}
7+
]
8+
}

.openpublishing.redirection.json

Lines changed: 85 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13669,7 +13669,6 @@
1366913669
"source_path": "support/dynamics/gp/unapproved-pending-change-order-exist.md",
1367013670
"redirect_url": "/troubleshoot/dynamics/gp/welcome-gp"
1367113671
},
13672-
1367313672
{
1367413673
"source_path": "support/dynamics/gp/use-banked-paycodes-with-project-accounting.md",
1367513674
"redirect_url": "/troubleshoot/dynamics/gp/welcome-gp"
@@ -13693,12 +13692,12 @@
1369313692
{
1369413693
"source_path": "support/windows-server/active-directory/troubleshoot-errors-join-computer-to-domain.md",
1369513694
"redirect_url": "/troubleshoot/windows-server/active-directory/domain-join-networking-errors"
13696-
},
13695+
},
13696+
{
13697+
"source_path": "support/power-platform/power-automate/desktop-flows/troubleshoot-excel-errors.md",
13698+
"redirect_url": "/troubleshoot/power-platform/power-automate/desktop-flows/office-automation/excel/troubleshoot-excel-errors"
13699+
},
1369713700
{
13698-
"source_path": "support/power-platform/power-automate/desktop-flows/troubleshoot-excel-errors.md",
13699-
"redirect_url": "/troubleshoot/power-platform/power-automate/desktop-flows/office-automation/excel/troubleshoot-excel-errors"
13700-
},
13701-
{
1370213701
"source_path": "support/entra/entra-id/mfa/authorization-request-denied-graph-api.md",
1370313702
"redirect_url": "/troubleshoot/entra/entra-id/app-integration/troubleshoot-authorization-requestdenied-graph-api",
1370413703
"redirect_document_id": false
@@ -13762,6 +13761,85 @@
1376213761
{
1376313762
"source_path": "support/azure/azure-kubernetes/connectivity/troubleshoot-dns-failure-from-pod-but-not-from-worker-node.md",
1376413763
"redirect_url": "/troubleshoot/azure/azure-kubernetes/connectivity/dns/troubleshoot-dns-failure-from-pod-but-not-from-worker-node"
13764+
},
13765+
{
13766+
"source_path": "support/windows-client/performance/stop-error-or-blue-screen-error-troubleshooting.md",
13767+
"redirect_url": "/troubleshoot/windows-client/performance/stop-code-error-troubleshooting"
13768+
},
13769+
{
13770+
"source_path": "support/power-platform/power-automate/desktop-flows/office-automation/excel/launch-excel-action-failures.md",
13771+
"redirect_url": "/troubleshoot/power-platform/power-automate/desktop-flows/office-automation/excel/troubleshoot-excel-errors"
13772+
},
13773+
{
13774+
"source_path": "support/sql/database-engine/install/windows/install-reporting-service.md",
13775+
"redirect_url": "/previous-versions/troubleshoot/sql/install/install-reporting-service",
13776+
"redirect_document_id": false
13777+
},
13778+
{
13779+
"source_path": "support/sql/database-engine/install/windows/issues-install-sql-server.md",
13780+
"redirect_url": "/previous-versions/troubleshoot/sql/install/issues-install-sql-server",
13781+
"redirect_document_id": false
13782+
},
13783+
{
13784+
"source_path": "support/sql/database-engine/install/windows/sql-server-2008-setup-issues.md",
13785+
"redirect_url": "/previous-versions/troubleshoot/sql/install/sql-server-2008-setup-issues",
13786+
"redirect_document_id": false
13787+
},
13788+
{
13789+
"source_path": "support/sql/database-engine/install/windows/sql-server-2012-setup-issues.md",
13790+
"redirect_url": "/previous-versions/troubleshoot/sql/install/sql-server-2012-setup-issues",
13791+
"redirect_document_id": false
13792+
},
13793+
{
13794+
"source_path": "support/sql/database-engine/security/instructions-in-fips-140-2-compliant-mode.md",
13795+
"redirect_url": "/previous-versions/troubleshoot/sql/security/instructions-in-fips-140-2-compliant-mode",
13796+
"redirect_document_id": false
13797+
},
13798+
{
13799+
"source_path": "support/sql/database-engine/security/sql-2014-fips-140-2-compliant-mode.md",
13800+
"redirect_url": "/previous-versions/troubleshoot/sql/security/sql-2014-fips-140-2-compliant-mode",
13801+
"redirect_document_id": false
13802+
},
13803+
{
13804+
"source_path": "support/sql/tools/error-you-run-sqlmaint-utility.md",
13805+
"redirect_url": "/previous-versions/troubleshoot/sql/tools/error-you-run-sqlmaint-utility",
13806+
"redirect_document_id": false
13807+
},
13808+
{
13809+
"source_path": "support/azure/azure-monitor/activity-logs/config-export/centralized-configuration-of-activity-logs-to-event-hub.md",
13810+
"redirect_url": "/troubleshoot/azure/azure-monitor/welcome-azure-monitor"
13811+
},
13812+
{
13813+
"source_path": "support/azure/azure-monitor/activity-logs/config-export/exporting-directory-level-activity-logs-to-event-hub.md",
13814+
"redirect_url": "/troubleshoot/azure/azure-monitor/welcome-azure-monitor"
13815+
},
13816+
{
13817+
"source_path": "support/azure/azure-monitor/activity-logs/config-export/pushing-subscription-activity-logs-to-sentinel.md",
13818+
"redirect_url": "/troubleshoot/azure/azure-monitor/activity-logs/config-export/push-subscription-activity-logs-to-sentinel"
13819+
},
13820+
{
13821+
"source_path": "support/azure/azure-monitor/activity-logs/config-export/resolving-log-limit-issues-in-azure-function-apps.md",
13822+
"redirect_url": "/troubleshoot/azure/azure-monitor/welcome-azure-monitor"
13823+
},
13824+
{
13825+
"source_path": "support/azure/azure-monitor/activity-logs/config-export/understanding-and-managing-diagnostic-settings-retention.md",
13826+
"redirect_url": "/troubleshoot/azure/azure-monitor/welcome-azure-monitor"
13827+
},
13828+
{
13829+
"source_path": "support/azure/azure-monitor/activity-logs/config-export/understanding-and-transitioning-from-legacy-to-diagnostic-settings.md",
13830+
"redirect_url": "/troubleshoot/azure/azure-monitor/welcome-azure-monitor"
13831+
},
13832+
{
13833+
"source_path": "support/azure/azure-monitor/activity-logs/config-export/diagnostic-settings-transition-from-legacy-solutions.md",
13834+
"redirect_url": "/troubleshoot/azure/azure-monitor/welcome-azure-monitor"
13835+
},
13836+
{
13837+
"source_path": "support/sql/database-engine/install/windows/error-install-sql-server-2008-r2.md",
13838+
"redirect_url": "/troubleshoot/sql/database-engine/install/windows/error-install-sql-server"
13839+
},
13840+
{
13841+
"source_path": "support/sql/database-engine/install/windows/update-or-slipstream-installation.md",
13842+
"redirect_url": "/sql/database-engine/install-windows/install-sql-server-using-slipstream"
1376513843
}
1376613844
]
13767-
}
13845+
}

0 commit comments

Comments
 (0)