From b58839df7a5f963049390ecec450ca865c48a481 Mon Sep 17 00:00:00 2001 From: Simon Sanchez Date: Thu, 20 Apr 2023 15:30:39 -0700 Subject: [PATCH 1/6] Add Bamboo audit command --- src/ActionsImporter/Commands/Bamboo/Audit.cs | 22 ++++++++++++ src/ActionsImporter/Commands/Bamboo/Common.cs | 36 +++++++++++++++++++ 2 files changed, 58 insertions(+) create mode 100644 src/ActionsImporter/Commands/Bamboo/Audit.cs create mode 100644 src/ActionsImporter/Commands/Bamboo/Common.cs diff --git a/src/ActionsImporter/Commands/Bamboo/Audit.cs b/src/ActionsImporter/Commands/Bamboo/Audit.cs new file mode 100644 index 0000000..5172f76 --- /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