Skip to main content

The Azure Backlog Generator (ABG) is designed to build backlogs for complex processes based on proven practices. The backlogs can be generated in either Azure DevOps or GitHub.

Project description

Azure Backlog Generator

github codecov PyPI version

Following repetitive processes and aligning all resources consistently can be a daunting task, and it can be common to overlook a step or make an incorrect assumption. There are many variables to consider in any complex process—identifying roles, resources, etc.

When conducting intense processes, it can be helpful to have a list of tasks to direct efforts. The Azure Backlog Generator (ABG) is designed to build backlogs for complex processes based on proven practices. The backlogs can be generated in either Azure DevOps or GitHub.

Currently Supported Backlogs

Azure Backlog Generator currently supports creating backlogs for the following processes.

Execution

Prior to execution, please take a moment to fully read through the documentation below.

Installation

First, install the azbacklog package:

pip install azbacklog

Create a Backlog

To create a backlog:

./azbacklog -t TOKEN


usage: azbacklog [-h] -t TOKEN [-r {azure,github}] [-p PROJECT] [-o ORG] [-b {caf,tfs}]

Generate a backlog of work items.

required arguments:
  -t TOKEN, --token TOKEN                           GitHub or Azure DevOps token

optional arguments:
  -h, --help                                        show this help message and exit
  -r {azure,github}, --repo {azure,github}          targetted repository type
  -p PROJECT, --project PROJECT                     project (repository) name to create
  -o ORG, --org ORG                                 Optional. If the target is a GitHub organization,
                                                    specify the organization's name.
  -b {caf,tfs}, --backlog {caf,tfs}                 type of backlog to create

Development

To contribute to the project from your development environment:

git clone https://github.com/Azure/Azure-Backlog-Generator generator
cd generator

pip install -e .[dev]

The previous commands will clone the repo and not only install the runtime dependencies but also the development dependencies.

Executing Locally Under Development

Once you've installed the package locally (e.g. -e .[dev] in the previous command), executing the package is as simple as (include the necessary parameters outlined above in the Create a Backlog section):

./main.py

Running Tests

To simply execute unit tests:

python -m pytest

If you would like to view a coverage report of the unit tests:

# Generate the report using pytest
coverage run -m pytest

# View the report, including missing lines
coverage report -m

Shared Responsibility

Microsoft maintains a position of shared responsibility between itself and the customer. Under this shared responsibility, it is understood that appropriate cloud adoption requires active participation from the architect(s) involved and the customer unit(s). In this process, the customer should be prepared to make available network and identity administrators, application and data architects, and other security principals. By understanding requirements through active feedback, Microsoft and its technical architects can adequately assess customer needs and propose recommendations that are proven in practice and that successfully meet customer objectives.

Technical Requirements

The scripts in this repository require Python as they rely on native Azure DevOps and GitHub SDKs. To execute these scripts, please download Python.

Technical Guidelines

Below are the technical guidelines that should be followed when contributing to the project.

Source

The application, including unit tests, are developed in Python in order to maintain compatibility between Azure DevOps and GitHub SDKs. The backlog items are developed in simple JSON format with very little metadata.

Backlog Items

The backlog items are arranged in a collection of epics, features, stories and tasks with the necessary parent-child relationships. The following table outlines the correlations between the backlog items in Azure DevOps and GitHub.

Azure DevOps GitHub Issues
Epic Project
Feature Milestone
User Story Issue
Task Checklist in the body of the Issue

Tags will be created and applied in both platforms (in GitHub as Labels).

Directory Structure

The directory structure follows a very simplistic heirarchy to fascilitate dependency creation and increase efficiency by minimizing overhead:

.
├── src                (source code)
├── tests              (unit tests)
└── workitems
    ├── 01_SampleEpic1
    │   ├── metadata.json
    │   └── 01_SampleFeature1
    │       ├── metadata.json
    │       └── 01_SampleStory1
    │           ├── metadata.json
    │           ├── 01_SampleTask1
    │           │   └── metadata.json
    │           └── 02_SampleTask2
    │               └── metadata.json
    └── 02_SampleEpic2
        ├── metadata.json
        ├── 01_SampleFeature1
        │   ├── metadata.json
        │   └── 01_SampleStory1
        │       ├── metadata.json
        │       └── 01_SampleTask1
        │           └── metadata.json
        └── 02_SampleFeature2
            ├── metadata.json
            └── 01_SampleStory1
                ├── metadata.json
                ├── 01_SampleTask1
                │   └── metadata.json
                └── 02_SampleTask2
                    └── metadata.json

The heirarchy above follows the structure of Epic -> Feature -> User Story -> Task. Each folder will contain a metadata.json file that follows the Work Item Format below and child items. Task folders will not contain any child work items and should only contain its metadata.

Work Item Format

The format of the metadata.json file is the following:

{
    "title": "Work Item Title",
    "description": "Some description of the work item",
    "tag": ["Strategy | Plan | Ready | Innovation | Migration | First Workload | First Host | Workload Template"],
    "roles": ["Infra | AppDev | Data | Security"]
}

NOTE: Tags and Roles must be those provided in the respective list of the corresponding process. The available lists are found with the backlog descriptions.

Contributing

Your experience and feedback are valuable and, therefore, your contributions are welcomed. Please create necessary issues and, optionally, pull requests for your feedback or contributions. Please adhere to the technical guidelines above when contributing to the source code.

Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.

When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

azbacklog-0.1.12.tar.gz (25.4 kB view hashes)

Uploaded Source

Built Distribution

azbacklog-0.1.12-py3-none-any.whl (66.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page