Linda Rønningen
Linda Rønningen

Reputation: 51

Copy Process for Azure Boards from one organization to other organization

After building up a customized inherited process in Azure DevOps, how can I copy this process to an other organization?

Upvotes: 5

Views: 2591

Answers (1)

Shayki Abramczyk
Shayki Abramczyk

Reputation: 41775

There is a tool that developed by Microsoft: VSTS Process Migrator.

  • Install it:

    npm install process-migrator -g
    
  • Create a config file according to the docs.
  • Run the tool:

    process-migrator --mode=migrate(default)/imoport/export --config=<config-file-path>
    

Upvotes: 3

Related Questions