-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #214 from samsmithnz/feature/newtasks21dec
Added support for more tasks
- Loading branch information
Showing
21 changed files
with
867 additions
and
105 deletions.
There are no files selected for viewing
14 changes: 14 additions & 0 deletions
14
src/AzurePipelinesToGitHubActionsConverter.Core/AzurePipelinesModel/Canary.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
using System.Collections.Generic; | ||
|
||
namespace AzurePipelinesToGitHubActionsConverter.Core.AzurePipelines | ||
{ | ||
public class Canary | ||
{ | ||
public int[] increments { get; set; } | ||
public Deploy preDeploy { get; set; } | ||
public Deploy deploy { get; set; } | ||
public Deploy routeTraffic { get; set; } | ||
public Deploy postRouteTraffic { get; set; } | ||
public On on { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
src/AzurePipelinesToGitHubActionsConverter.Core/AzurePipelinesModel/On.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
using System.Collections.Generic; | ||
|
||
namespace AzurePipelinesToGitHubActionsConverter.Core.AzurePipelines | ||
{ | ||
public class On | ||
{ | ||
public Deploy failure { get; set; } | ||
public Deploy success { get; set; } | ||
} | ||
} |
14 changes: 14 additions & 0 deletions
14
src/AzurePipelinesToGitHubActionsConverter.Core/AzurePipelinesModel/Rolling.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
using System.Collections.Generic; | ||
|
||
namespace AzurePipelinesToGitHubActionsConverter.Core.AzurePipelines | ||
{ | ||
public class Rolling | ||
{ | ||
public int maxParallel { get; set; } | ||
public Deploy preDeploy { get; set; } | ||
public Deploy deploy { get; set; } | ||
public Deploy routeTraffic { get; set; } | ||
public Deploy postRouteTraffic { get; set; } | ||
public On on { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.