diff --git a/src/ActionsImporter/Commands/Audit.cs b/src/ActionsImporter/Commands/Audit.cs index ae338a43..1054fa19 100644 --- a/src/ActionsImporter/Commands/Audit.cs +++ b/src/ActionsImporter/Commands/Audit.cs @@ -28,6 +28,7 @@ protected override Command GenerateCommand(App app) command.AddGlobalOption(FoldersOption); command.AddCommand(new AzureDevOps.Audit(_args).Command(app)); + command.AddCommand(new Bamboo.Audit(_args).Command(app)); command.AddCommand(new Circle.Audit(_args).Command(app)); command.AddCommand(new GitLab.Audit(_args).Command(app)); command.AddCommand(new Jenkins.Audit(_args).Command(app)); diff --git a/src/ActionsImporter/Commands/Bamboo/Audit.cs b/src/ActionsImporter/Commands/Bamboo/Audit.cs new file mode 100644 index 00000000..058b9b3f --- /dev/null +++ b/src/ActionsImporter/Commands/Bamboo/Audit.cs @@ -0,0 +1,22 @@ +using System.Collections.Immutable; +using System.CommandLine; + +namespace ActionsImporter.Commands.Bamboo; + +public class Audit : ContainerCommand +{ + public Audit(string[] args) + : base(args) + { + } + + protected override string Name => "bamboo"; + protected override string Description => "An audit will output a list of data used in a Bamboo instance."; + protected override ImmutableArray