Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 790 Bytes

README.md

File metadata and controls

12 lines (9 loc) · 790 Bytes

automation-task-template

Automation Task Templates

To test the Automation Task template from your forked github repository that holds your template, use Fiddler and in the Fiddler Script find the onBeforeRequest() function and add the following code:

if (oSession.url == "raw.githubusercontent.com/azure/automation-task-template/master/templates/manifest.json") { oSession.url = "raw.githubusercontent.com//automation-task-template//templates/manifest.json"; }

    if (oSession.url == "raw.githubusercontent.com/azure/automation-task-template/master/templates/<template-name>") {
        oSession.url = "raw.githubusercontent.com/<git-username>/automation-task-template/<new-branch>/templates/<template-name>";
     }