Skip to content

Commit 7e1e397

Browse files
Merge branch 'main' into 20250318-yamlDotNet16Compat
2 parents fdb982e + f858358 commit 7e1e397

File tree

283 files changed

+7413
-2596
lines changed

Some content is hidden

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

283 files changed

+7413
-2596
lines changed

.github/.linkspector.yml

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,19 @@ ignorePatterns:
77
- pattern: "./issues"
88
- pattern: "./discussions"
99
- pattern: "./pulls"
10-
- pattern: "^http://localhost"
11-
- pattern: "^https://localhost"
12-
- pattern: "^https://platform.openai.com"
13-
- pattern: "^https://outlook.office.com/bookings"
10+
- pattern: "https:\/\/platform.openai.com"
11+
- pattern: "https:\/\/outlook.office.com/bookings"
12+
excludedFiles:
13+
# Files that are temporarily excluded because they contain links that are temporarily unavailable.
14+
- ./docs/decisions/0054-processes.md # Cannot reach https://docs.dapr.io/developing-applications/building-blocks/actors/actors-overview/. Status: 404" location:{path:"docs/decisions/0054-processes.md"
15+
- ./dotnet/src/Experimental/Process.IntegrationTestRunner.Dapr/README.md # Cannot reach https://docs.dapr.io/getting-started/install-dapr-selfhost/. Status: 404" location:{path:"dotnet/src/Experimental/Process.IntegrationTestRunner.Dapr/README.md"
16+
- ./python/DEV_SETUP.md # "Cannot reach https://code.visualstudio.com/docs/editor/workspaces. Status: 404"
17+
excludedDirs:
18+
# Folders which include links to localhost, since it's not ignored with regular expressions
19+
- ./python/samples/demos/telemetry
20+
- ./python/samples/demos/process_with_dapr
21+
- ./dotnet/samples/Demos/ProcessWithDapr
22+
- ./dotnet/samples/Demos/CopilotAgentPlugins
1423
baseUrl: https://github.com/microsoft/semantic-kernel/
1524
aliveStatusCodes:
1625
- 200

.github/workflows/codeql-analysis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ jobs:
3232
steps:
3333
- name: Checkout repository
3434
uses: actions/checkout@v4
35+
with:
36+
persist-credentials: false
3537

3638
# Initializes the CodeQL tools for scanning.
3739
- name: Initialize CodeQL

.github/workflows/dotnet-build-and-test.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ jobs:
3030
dotnetChanges: ${{ steps.filter.outputs.dotnet }}
3131
steps:
3232
- uses: actions/checkout@v4
33+
with:
34+
persist-credentials: false
3335
- uses: dorny/paths-filter@v2
3436
id: filter
3537
with:
@@ -68,6 +70,8 @@ jobs:
6870
environment: ${{ matrix.environment }}
6971
steps:
7072
- uses: actions/checkout@v4
73+
with:
74+
persist-credentials: false
7175
- name: Setup dotnet ${{ matrix.dotnet }}
7276
uses: actions/setup-dotnet@v3
7377
with:

.github/workflows/dotnet-ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ jobs:
2727
- uses: actions/checkout@v4
2828
with:
2929
clean: true
30+
persist-credentials: false
3031

3132
- name: Find solutions
3233
shell: bash
@@ -74,6 +75,7 @@ jobs:
7475
- uses: actions/checkout@v4
7576
with:
7677
clean: true
78+
persist-credentials: false
7779

7880
- name: Setup .NET SDK ${{ matrix.dotnet-version }}
7981
uses: actions/setup-dotnet@v4

.github/workflows/dotnet-format.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ jobs:
3737
uses: actions/checkout@v4
3838
with:
3939
fetch-depth: 0
40+
persist-credentials: false
4041

4142
- name: Get changed files
4243
id: changed-files

.github/workflows/dotnet-integration-tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ jobs:
2626
if: ${{ github.event_name != 'pull_request' }}
2727
with:
2828
clean: true
29+
persist-credentials: false
2930

3031
- name: Setup .NET
3132
uses: actions/setup-dotnet@v4

.github/workflows/markdown-link-check.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ jobs:
1414
# check out the latest version of the code
1515
steps:
1616
- uses: actions/checkout@v4
17+
with:
18+
persist-credentials: false
1719

1820
# Checks the status of hyperlinks in all files
1921
- name: Run linkspector

.github/workflows/typos.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ jobs:
2121
steps:
2222
- name: Check out code
2323
uses: actions/checkout@v4
24+
with:
25+
persist-credentials: false
2426

2527
- name: Use custom config file
2628
uses: crate-ci/typos@master

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
- Python <br/>
66
[![Python package](https://img.shields.io/pypi/v/semantic-kernel)](https://pypi.org/project/semantic-kernel/)
77
- .NET <br/>
8-
[![Nuget package](https://img.shields.io/nuget/vpre/Microsoft.SemanticKernel)](https://www.nuget.org/packages/Microsoft.SemanticKernel/)[![dotnet Docker](https://github.com/microsoft/semantic-kernel/actions/workflows/dotnet-ci-docker.yml/badge.svg?branch=main)](https://github.com/microsoft/semantic-kernel/actions/workflows/dotnet-ci-docker.yml)[![dotnet Windows](https://github.com/microsoft/semantic-kernel/actions/workflows/dotnet-ci-windows.yml/badge.svg?branch=main)](https://github.com/microsoft/semantic-kernel/actions/workflows/dotnet-ci-windows.yml)
8+
[![Nuget package](https://img.shields.io/nuget/vpre/Microsoft.SemanticKernel)](https://www.nuget.org/packages/Microsoft.SemanticKernel/)
99

1010
## Overview
1111

@@ -80,7 +80,7 @@ from either OpenAI or Azure OpenAI and to run one of the C#, Python, and Java co
8080
### For C#:
8181

8282
1. Go to the Quick start page [here](https://learn.microsoft.com/en-us/semantic-kernel/get-started/quick-start-guide?pivots=programming-language-csharp) and follow the steps to dive in.
83-
2. After Installing the SDK, we advise you follow the steps and code detailed to write your first console app.
83+
2. After installing the SDK, we advise you follow the steps and code detailed to write your first console app.
8484
![dotnetmap](https://learn.microsoft.com/en-us/semantic-kernel/media/dotnetmap.png)
8585

8686
### For Python:
@@ -95,7 +95,7 @@ The Java code is in the [semantic-kernel-java](https://github.com/microsoft/sema
9595
[semantic-kernel-java build](https://github.com/microsoft/semantic-kernel-java/blob/main/BUILD.md) for instructions on
9696
how to build and run the Java code.
9797

98-
Please file Java Semantic Kernel specific issues in
98+
Please file Java Semantic Kernel-specific issues in
9999
the [semantic-kernel-java](https://github.com/microsoft/semantic-kernel-java) repository.
100100

101101
## Learning how to use Semantic Kernel
@@ -125,7 +125,7 @@ The Semantic Kernel extension for Visual Studio Code makes it easy to design and
125125

126126
## Join the community
127127

128-
We welcome your contributions and suggestions to SK community! One of the easiest
128+
We welcome your contributions and suggestions to the SK community! One of the easiest
129129
ways to participate is to engage in discussions in the GitHub repository.
130130
Bug reports and fixes are welcome!
131131

@@ -151,7 +151,7 @@ To learn more and get started:
151151

152152
This project has adopted the
153153
[Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
154-
For more information see the
154+
For more information, see the
155155
[Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/)
156156
157157
with any additional questions or comments.

docs/PLUGINS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# What are plugins?
22

3-
This document has been moved to the Semantic Kernel Documentation site. You can find it by navigating to the [Using AI plugins in Semantic Kernel](https://learn.microsoft.com/en-us/semantic-kernel/ai-orchestration/plugins) page.
3+
This document has been moved to the Semantic Kernel Documentation site. You can find it by navigating to the [What is a Plugin?](https://learn.microsoft.com/en-us/semantic-kernel/concepts/plugins) page.
44

5-
To make an update on the page, file a PR on the [docs repo.](https://github.com/MicrosoftDocs/semantic-kernel-docs/blob/main/semantic-kernel/ai-orchestration/plugins.md)
5+
To make an update on the page, file a PR on the [docs repo.](https://github.com/MicrosoftDocs/semantic-kernel-docs/blob/main/semantic-kernel/concepts/plugins/index.md)

0 commit comments

Comments
 (0)