Skip to content

Commit 35c6c14

Browse files
Merge branch 'main' into add-certificate-sample
2 parents da18fc2 + 84bfb12 commit 35c6c14

21 files changed

Lines changed: 439 additions & 5986 deletions

File tree

.github/workflows/dispatch-ci.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Dispatch CI
2+
3+
on:
4+
pull_request:
5+
branches: [main]
6+
push:
7+
branches: [main]
8+
workflow_dispatch:
9+
10+
concurrency:
11+
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
12+
cancel-in-progress: true
13+
14+
jobs:
15+
dispatch:
16+
runs-on: ubuntu-latest
17+
steps:
18+
- name: Trigger CI in paid org
19+
run: |
20+
gh workflow run run-samples.yml \
21+
--repo localstack/azure-samples-ci \
22+
--ref main \
23+
--field sha="${{ github.event.pull_request.head.sha || github.sha }}" \
24+
--field ref="${{ github.head_ref || github.ref_name }}" \
25+
--field pr_number="${{ github.event.pull_request.number || '' }}" \
26+
--field repo="${{ github.repository }}" \
27+
--field run_url="${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"
28+
env:
29+
GH_TOKEN: ${{ secrets.PAID_ORG_PAT }}

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ This repository contains comprehensive sample projects demonstrating how to deve
2626

2727
| Sample Name | Description |
2828
|-------------|-------------|
29-
| [Function App and Storage](./samples/function-app-storage-http/dotnet/README.md) | Azure Functions App using Blob, Queue, and Table Storage |
30-
| [Function App and Front Door](./samples/function-app-front-door/python/README.md) | Azure Functions App exposed via Front Door |
31-
| [Function App and Managed Identities](./samples/function-app-managed-identity/python/README.md) | Azure Function App using Managed Identities |
32-
| [Web App and CosmosDB ](./samples/web-app-cosmosdb-mongodb-api/python/README.md) | Azure Web App using CosmosDB for MongoDB API |
33-
| [Web App and Managed Identities](./samples/web-app-managed-identity/python/README.md) | Azure Web App using Managed Identities |
34-
| [Web App and SQL Database ](./samples/web-app-sql-database/python/README.md) | Azure Web App using SQL Database |
29+
| [Function App and Storage](./samples/function-app-storage-http/dotnet) | Azure Functions App using Blob, Queue, and Table Storage |
30+
| [Function App and Front Door](./samples/function-app-front-door/python/) | Azure Functions App exposed via Front Door |
31+
| [Function App and Managed Identities](./samples/function-app-managed-identity/python/) | Azure Function App using Managed Identities |
32+
| [Web App and CosmosDB ](./samples/web-app-cosmosdb-mongodb-api/python/) | Azure Web App using CosmosDB for MongoDB API |
33+
| [Web App and Managed Identities](./samples/web-app-managed-identity/python/) | Azure Web App using Managed Identities |
34+
| [Web App and SQL Database ](./samples/web-app-sql-database/python/) | Azure Web App using SQL Database |
3535

3636
## Sample Structure
3737

samples/function-app-front-door/python/README.md

Lines changed: 229 additions & 154 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)