Add PowerShell Hello Cities sample for Durable Functions#313
Merged
greenie-msft merged 5 commits intoMay 27, 2026
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a new PowerShell “Hello Cities” Durable Functions sample to the repo’s sample catalog, intended to demonstrate basic orchestration patterns against the Durable Task Scheduler backend.
Changes:
- Extend the samples catalog (
samples/README.md) to include PowerShell under Durable Functions and add a PowerShell section. - Add a new PowerShell samples index (
samples/durable-functions/powershell/README.md). - Add a new PowerShell Durable Functions app sample (
samples/durable-functions/powershell/HelloCities) implementing chaining + fan-out/fan-in.
Reviewed changes
Copilot reviewed 17 out of 17 changed files in this pull request and generated 4 comments.
Show a summary per file
| File | Description |
|---|---|
| samples/README.md | Adds PowerShell to the Durable Functions matrix and adds a PowerShell section entry for Hello Cities. |
| samples/durable-functions/powershell/README.md | Introduces a PowerShell samples landing page. |
| samples/durable-functions/powershell/HelloCities/.gitignore | Ignores managed dependency modules folder. |
| samples/durable-functions/powershell/HelloCities/README.md | Documents how to run the PowerShell Hello Cities sample locally and against Azure. |
| samples/durable-functions/powershell/HelloCities/host.json | Configures Durable Task Scheduler backend/provider for the function app. |
| samples/durable-functions/powershell/HelloCities/profile.ps1 | Adds PowerShell cold-start profile and Managed Identity login behavior. |
| samples/durable-functions/powershell/HelloCities/requirements.psd1 | Declares required PowerShell modules (Az.Accounts). |
| samples/durable-functions/powershell/HelloCities/ChainingOrchestration/function.json | Declares the orchestration trigger binding for chaining. |
| samples/durable-functions/powershell/HelloCities/ChainingOrchestration/run.ps1 | Implements the chaining orchestrator logic. |
| samples/durable-functions/powershell/HelloCities/FanOutFanInOrchestration/function.json | Declares the orchestration trigger binding for fan-out/fan-in. |
| samples/durable-functions/powershell/HelloCities/FanOutFanInOrchestration/run.ps1 | Implements fan-out/fan-in orchestration logic. |
| samples/durable-functions/powershell/HelloCities/SayHello/function.json | Declares the activity trigger binding. |
| samples/durable-functions/powershell/HelloCities/SayHello/run.ps1 | Implements the SayHello activity. |
| samples/durable-functions/powershell/HelloCities/StartChaining/function.json | Declares the HTTP starter + durableClient bindings for chaining. |
| samples/durable-functions/powershell/HelloCities/StartChaining/run.ps1 | Implements the HTTP starter for chaining. |
| samples/durable-functions/powershell/HelloCities/StartFanOutFanIn/function.json | Declares the HTTP starter + durableClient bindings for fan-out/fan-in. |
| samples/durable-functions/powershell/HelloCities/StartFanOutFanIn/run.ps1 | Implements the HTTP starter for fan-out/fan-in. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This was referenced May 26, 2026
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
…son instructions, clarify expected output
…ype accelerator, empty requirements
greenie-msft
approved these changes
May 27, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Purpose
Does this introduce a breaking change?
Pull Request Type
What kind of change does this Pull Request introduce?
How to Test
What to Check
Verify that the following are valid
Other Information