Skip to content

Commit fc5fcca

Browse files
Merge pull request #2720 from dotnet/main
✅ Merge `main` into `live`
2 parents f835048 + 152ebae commit fc5fcca

18 files changed

+816
-105
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# This GitHub Action workflow is triggered on label changes for pull requests.
2+
# When a pull request is labeled with "DO NOT MERGE", the workflow fails, thus
3+
# preventing the pull request from being merged. Otherwise, the workflow will
4+
# succeed, allowing the pull request to be merged.
5+
6+
name: "Check labels that prevent merge"
7+
on:
8+
pull_request:
9+
branches: [main]
10+
types: [labeled, unlabeled]
11+
12+
permissions:
13+
contents: read
14+
15+
jobs:
16+
labels-preventing-merge-check:
17+
runs-on: ubuntu-latest
18+
strategy:
19+
matrix:
20+
label:
21+
# Labels that prevent merging
22+
- 'DO NOT MERGE'
23+
steps:
24+
- name: Harden Runner
25+
uses: step-security/harden-runner@4d991eb9b905ef189e4c376166672c3f2f230481 # v2.11.0
26+
with:
27+
egress-policy: audit
28+
29+
- name: 'Check "${{ matrix.label }}" label'
30+
run: |
31+
echo "::notice::Merging permission is diabled for PRs when the '${{ matrix.label }}' label is applied."
32+
33+
if [ "${{ contains(github.event.pull_request.labels.*.name, matrix.label) }}" = "true" ]; then
34+
echo "::error::Pull request is labeled as '${{ matrix.label }}'. Please remove the label before merging."
35+
exit 1
36+
else
37+
exit 0
38+
fi

aspire-samples

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Subproject commit c7edffcc113e08856995c17f0a3d9b4bd072c942

docs/database/azure-cosmos-db-integration.md

+1
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,7 @@ The .NET Aspire Azure Cosmos DB integration currently doesn't support metrics by
201201
## See also
202202

203203
- [Azure Cosmos DB](https://azure.microsoft.com/services/cosmos-db)
204+
- [.NET Aspire Cosmos DB Entity Framework Core integration](azure-cosmos-db-entity-framework-integration.md)
204205
- [.NET Aspire integrations overview](../fundamentals/integrations-overview.md)
205206
- [.NET Aspire Azure integrations overview](../azure/integrations-overview.md)
206207
- [.NET Aspire GitHub repo](https://github.com/dotnet/aspire)

docs/database/azure-postgresql-integration.md

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ uid: dotnet/aspire/azure-postgresql-integration
2525

2626
- [PostgreSQL docs](https://www.npgsql.org/doc/api/Npgsql.html)
2727
- [Azure Database for PostgreSQL](/azure/postgresql/)
28+
- [.NET Aspire Azure PostgreSQL Entity Framework Core integration](azure-postgresql-entity-framework-integration.md)
2829
- [.NET Aspire PostgreSQL integration](postgresql-integration.md)
2930
- [.NET Aspire integrations](../fundamentals/integrations-overview.md)
3031
- [.NET Aspire GitHub repo](https://github.com/dotnet/aspire)

0 commit comments

Comments
 (0)