LeWoody
LeWoody

Reputation: 3649

Can you manage custom process templates across Organizations in Azure DevOps?

This goes into how customize process template using inherited process templates. I'd like to spread my customized process templates across Organizations. Is this possible?

If not, is there a workaround?

Upvotes: 2

Views: 322

Answers (1)

jessehouwing
jessehouwing

Reputation: 114481

There is a REST API for process templates. At the moment that's your best bet to export templates and to import them into other organizations. There is no "cross org sync" and no "process template marketplace" or "process template extension" support at the moment.

There is an Azure Pipelines set of tasks available through this extension which can help you to keep track of your process customizations and sync them across orgs.

The Inherited processes are imported/exported using this Microsoft NPM package. If you have a recent version of NodeJS/npm installed, you can simply run:

npx process-migrator

to get started.

Upvotes: 3

Related Questions