Skip to content

Commit

Permalink
Add git dependencies to ActionTemplateResource (#799)
Browse files Browse the repository at this point in the history
  • Loading branch information
eddymoulton committed Nov 12, 2023
1 parent 125ec2d commit f8c5ceb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1716,6 +1716,7 @@ Octopus.Client.Model
String ActionType { get; set; }
String CommunityActionTemplateId { get; set; }
String Description { get; set; }
Octopus.Client.Model.GitDependencyCollectionResource GitDependencies { get; }
Object Inputs { get; set; }
String Name { get; set; }
Octopus.Client.Model.PackageReferenceCollection Packages { get; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1732,6 +1732,7 @@ Octopus.Client.Model
String ActionType { get; set; }
String CommunityActionTemplateId { get; set; }
String Description { get; set; }
Octopus.Client.Model.GitDependencyCollectionResource GitDependencies { get; }
Object Inputs { get; set; }
String Name { get; set; }
Octopus.Client.Model.PackageReferenceCollection Packages { get; }
Expand Down
3 changes: 3 additions & 0 deletions source/Octopus.Server.Client/Model/ActionTemplateResource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ public class ActionTemplateResource : Resource, INamedResource, IHaveSpaceResour
[JsonProperty(ObjectCreationHandling = ObjectCreationHandling.Reuse)]
public IDictionary<string, PropertyValueResource> Properties { get; } = new Dictionary<string, PropertyValueResource>();

[JsonProperty(ObjectCreationHandling = ObjectCreationHandling.Reuse)]
public GitDependencyCollectionResource GitDependencies { get; } = new();

[JsonProperty(ObjectCreationHandling = ObjectCreationHandling.Reuse)]
public PackageReferenceCollection Packages { get; } = new PackageReferenceCollection();

Expand Down

0 comments on commit f8c5ceb

Please sign in to comment.