Skip to content

Commit 5a0d69c

Browse files
committed
Remove ratings
1 parent c8d8e34 commit 5a0d69c

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

AddActionsWorkflow/Options/General.cs

+5-6
Original file line numberDiff line numberDiff line change
@@ -11,34 +11,33 @@ public class GeneralOptions : BaseOptionPage<General> { }
1111

1212
public class General : BaseOptionModel<General>
1313
{
14-
[Category("Generator")]
14+
[Category("Workflow Generator")]
1515
[DisplayName("Default file name")]
1616
[Description("The base name of the workflow (.yaml) file to be generated")]
1717
[DefaultValue("build")]
1818
public string DefaultName { get; set; } = "build";
1919

20-
[Category("Generator")]
20+
[Category("Workflow Generator")]
2121
[DisplayName("Randomize file name")]
2222
[Description("If true, a suffix is added to the Default file name to avoid conflicts")]
2323
[DefaultValue(true)]
2424
public bool RandomizeFileName { get; set; } = true;
2525

26-
[Category("Generator")]
26+
[Category("Workflow Generator")]
2727
[DisplayName("Overwrite if exists")]
2828
[Description("If true, this will overwrite same-named workflow files if exists")]
2929
[DefaultValue(false)]
3030
public bool OverwriteExisting { get; set; } = false;
3131

32-
[Category("Generator")]
32+
[Category("Workflow Generator")]
3333
[DisplayName("Solution Folder")]
3434
[Description("The Solution Items folder to add these to in the Visual Studio solution")]
3535
[DefaultValue("Solution Items")]
3636
public string SolutionFolderName { get; set; } = "Solution Items";
3737

38-
[Category("Generator")]
38+
[Category("Workflow Generator")]
3939
[DisplayName("Current branch")]
4040
[Description("Will use the current branch name or 'main' if false")]
4141
[DefaultValue(true)]
4242
public bool UseCurrentBranchName { get; set; } = true;
43-
public int RatingRequests { get; set; }
4443
}

0 commit comments

Comments
 (0)