AZDocGen supports extracting documentation directly embedded in Azure Pipelines YAML files. You can add metadata, descriptions, and conditions to make your pipeline more informative and easier to understand.
- Contents
- 1. Metadata Section (Header Documentation)
- 2. Adding Descriptions to Steps and Jobs
- 3. Documenting Conditions
- 4. Using Templates
- 5. Example Enriched Pipeline YAML
- Tips for Effective Documentation
Add a header at the beginning of the YAML file to include high-level metadata about the pipeline. Use tags prefixed with #
and starting with @
.
@title
: Title of the pipeline.@description
: A brief description of the pipeline's purpose or functionality.@author
: Author or team responsible for the pipeline.@version
: Version of the pipeline.
# @title: CI/CD Pipeline
# @description: This pipeline automates the build, test, and deploy process
# for our application, ensuring high-quality releases.
# @author: DevOps Team
# @version: 2.1
# Then your code follows
trigger:
batch: "true"
branches:
include:
- '*'
# ...
Each step and job can have a displayName
or name
field, which AZDocGen extracts to generate documentation.
- Use the
displayName
field to describe the action being performed. - If a
displayName
is not provided, the script, template, or checkout type will be used.
steps:
- script: echo "Building application"
displayName: "Build the Application"
- script: echo "Running tests"
displayName: "Run Unit Tests"
- Add a
displayName
to describe the job's purpose.
jobs:
- job: Build
displayName: "Build the Application"
steps:
- script: npm install
- script: npm run build
Conditions can be global or local (within jobs or steps). You can document these conditions by using standard YAML condition
fields or inline conditions.
-
Global Conditions:
Use thecondition
field for stages or jobs.- stage: Deploy displayName: "Deploy Stage" condition: eq(variables['Build.SourceBranch'], 'refs/heads/main')
-
Inline Conditions:
Use the${{ if }}
syntax within steps or jobs.steps: - ${{ if eq(variables['Build.SourceBranch'], 'refs/heads/main') }}: script: echo "Deploying to production"
When reusing templates in your pipeline, make sure the template names are descriptive.
steps:
- template: build-template.yml
parameters:
environment: production
Here’s an example of a pipeline YAML enriched with documentation:
# @title: Comprehensive CI/CD Pipeline
# @description: Automates building, testing, and deploying a microservice.
# Includes conditional deployment and reusable templates.
# @author: DevOps Team
# @version: 1.0
trigger:
branches:
include:
- main
resources:
repositories:
- repository: shared-templates
type: git
name: org/shared-templates
stages:
- stage: Build
displayName: "Build Stage"
condition: eq(variables['Build.SourceBranch'], 'refs/heads/main')
jobs:
- job: BuildApp
displayName: "Build the Application"
pool:
vmImage: "ubuntu-latest"
steps:
- script: echo "Compiling application..."
displayName: "Compile App"
- script: echo "Packaging application..."
displayName: "Package App"
- stage: Deploy
displayName: "Deploy Stage"
dependsOn: Build
condition: eq(variables['Build.SourceBranch'], 'refs/heads/main')
jobs:
- job: DeployToProd
displayName: "Deploy to Production"
steps:
- ${{ if eq(variables['Environment'], 'Production') }}:
script: echo "Deploying to production"
displayName: "Deploy Production Environment"
-
Be Consistent:
UsedisplayName
for all steps and jobs to ensure clarity in what each action performs. -
Use Metadata:
Always include a header at the top of your YAML file with tags such as@title
,@description
,@author
, and@version
to provide context. -
Leverage Templates:
Use meaningful names and parameters in templates to make your pipeline more reusable and comprehensible.
By following these tips, your Azure Pipelines YAML will be easier to maintain, understand, and document effectively with AZDocGen.