diff --git a/AddActionsWorkflow/Options/General.cs b/AddActionsWorkflow/Options/General.cs index 700b6d1..60af7e2 100644 --- a/AddActionsWorkflow/Options/General.cs +++ b/AddActionsWorkflow/Options/General.cs @@ -11,34 +11,33 @@ public class GeneralOptions : BaseOptionPage { } public class General : BaseOptionModel { - [Category("Generator")] + [Category("Workflow Generator")] [DisplayName("Default file name")] [Description("The base name of the workflow (.yaml) file to be generated")] [DefaultValue("build")] public string DefaultName { get; set; } = "build"; - [Category("Generator")] + [Category("Workflow Generator")] [DisplayName("Randomize file name")] [Description("If true, a suffix is added to the Default file name to avoid conflicts")] [DefaultValue(true)] public bool RandomizeFileName { get; set; } = true; - [Category("Generator")] + [Category("Workflow Generator")] [DisplayName("Overwrite if exists")] [Description("If true, this will overwrite same-named workflow files if exists")] [DefaultValue(false)] public bool OverwriteExisting { get; set; } = false; - [Category("Generator")] + [Category("Workflow Generator")] [DisplayName("Solution Folder")] [Description("The Solution Items folder to add these to in the Visual Studio solution")] [DefaultValue("Solution Items")] public string SolutionFolderName { get; set; } = "Solution Items"; - [Category("Generator")] + [Category("Workflow Generator")] [DisplayName("Current branch")] [Description("Will use the current branch name or 'main' if false")] [DefaultValue(true)] public bool UseCurrentBranchName { get; set; } = true; - public int RatingRequests { get; set; } }