BrainyBeeBrainyBee
ExploreBlogStart Studying
HomeDesigning and Implementing Microsoft DevOps Solutions (AZ-400)Structuring the flow of work
Lesson231 words

Structuring the flow of work

Design and implement a structure for the flow of work

GitHub Flow

A deliberately small branching model:

  1. Create a branch from main.
  2. Commit changes.
  3. Open a pull request.
  4. Review and discuss.
  5. Merge.
  6. Deploy — main is always deployable.

The defining constraint is that main is always deployable. Everything else follows: branches are short-lived because a long-lived branch drifts from a moving main, and releases are frequent because there is nothing to batch up.

When GitHub Flow is not enough

SituationConsider
Multiple supported versions in the fieldRelease branches
Regulated release windowsRelease branches plus tags
Trunk-based with incomplete featuresGitHub Flow plus feature flags

That last row is the important pairing. GitHub Flow assumes you can merge to main safely; feature flags are what make that true for work spanning several cycles, because the code ships dormant rather than living on a branch.

Work item linkage

The flow of work is not only branches. A change should be traceable from the item that requested it, through the commit and pull request, to the build and the deployment that shipped it. Establishing that chain is a design decision made at the start — retrofitting traceability across months of history is not practical.

Primary sources

  • https://docs.github.com/en/get-started/using-github/github-flow
  • https://learn.microsoft.com/en-us/azure/devops/boards/backlogs/link-work-items-support-traceability
All Designing and Implementing Microsoft DevOps Solutions (AZ-400) Study Resources

Related Notes

  • Agent and runner infrastructure421 words
  • Agent and runner infrastructure — quick notes150 words
  • Alerting on pipeline events255 words
  • Alerting on pipeline events — quick notes94 words
  • Analyzing usage and application performance241 words
  • Analyzing usage and application performance — quick notes73 words
  • Appropriate access levels217 words
  • Appropriate access levels — quick notes85 words
  • Automating container scanning277 words
  • Automating container scanning — quick notes96 words
  • Automating documentation from Git history191 words
  • Automating documentation from Git history — quick notes55 words

Ready to study Designing and Implementing Microsoft DevOps Solutions (AZ-400)?

Practice tests, flashcards, and all study notes — free, no sign-up.

Start Studying

Ready to study Designing and Implementing Microsoft DevOps Solutions (AZ-400)?

Practice tests, flashcards, and all study notes — free, no sign-up needed.

Start Studying — Free
Designing and Implementing Microsoft DevOps Solutions (AZ-400) ResourcesExplore All HivesBlogHome

© 2026 BrainyBee. Free AI-powered exam prep.