File tree Expand file tree Collapse file tree 3 files changed +2
-34
lines changed
src/Candoumbe.Pipelines/Components/GitHub Expand file tree Collapse file tree 3 files changed +2
-34
lines changed Original file line number Diff line number Diff line change 33
33
" Feature" ,
34
34
" Format" ,
35
35
" Hotfix" ,
36
- " IntegrationTests" ,
37
- " MutationTests" ,
38
36
" Pack" ,
39
37
" Publish" ,
40
38
" Release" ,
41
- " ReportIntegrationTestCoverage" ,
42
- " ReportUnitTestCoverage" ,
43
- " Restore" ,
44
- " UnitTests"
39
+ " Restore"
45
40
]
46
41
},
47
42
"Verbosity" : {
123
118
"type" : " string" ,
124
119
"description" : " The name of the chore branch prefix"
125
120
},
126
- "CodecovToken" : {
127
- "type" : " string" ,
128
- "description" : " The API key used to push code coverage to CodeCov" ,
129
- "default" : " Secrets must be entered via 'nuke :secrets [profile]'"
130
- },
131
121
"ConfigName" : {
132
122
"type" : " string" ,
133
123
"description" : " Defines the name of the configuration to use to publish packages"
201
191
"type" : " string" ,
202
192
"description" : " Path to a solution file that is automatically loaded"
203
193
},
204
- "StrykerDashboardApiKey" : {
205
- "type" : " string" ,
206
- "description" : " API KEY used to submit mutation report to a stryker dashboard" ,
207
- "default" : " Secrets must be entered via 'nuke :secrets [profile]'"
208
- },
209
194
"Title" : {
210
195
"type" : " string" ,
211
196
"description" : " Title that will be used when creating a PR"
Original file line number Diff line number Diff line change @@ -62,11 +62,6 @@ public class Pipeline : EnhancedNukeBuild,
62
62
IRestore ,
63
63
IDotnetFormat ,
64
64
ICompile ,
65
- IUnitTest ,
66
- IMutationTest ,
67
- IIntegrationTest ,
68
- IReportUnitTestCoverage ,
69
- IReportIntegrationTestCoverage ,
70
65
IPushNugetPackages ,
71
66
ICreateGithubRelease ,
72
67
IGitFlowWithPullRequest
@@ -144,16 +139,4 @@ ValueTask IGitFlow.FinishRelease()
144
139
145
140
///<inheritdoc/>
146
141
bool IDotnetFormat . VerifyNoChanges => IsLocalBuild ;
147
-
148
- /// <inheritdoc />
149
- IEnumerable < Project > IUnitTest . UnitTestsProjects => [ ] ;
150
-
151
- /// <inheritdoc />
152
- IEnumerable < Project > IIntegrationTest . IntegrationTestsProjects => [ ] ;
153
-
154
- /// <inheritdoc />
155
- IEnumerable < MutationProjectConfiguration > IMutationTest . MutationTestsProjects => [ ] ;
156
-
157
- /// <inheritdoc />
158
- bool IReportCoverage . ReportToCodeCov => false ;
159
142
}
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ public interface IPullRequest : IHaveGitHubRepository
21
21
string Description => TryGetValue ( ( ) => Description ) ?? this . As < IHaveChangeLog > ( ) ? . ReleaseNotes ;
22
22
23
23
/// <summary>
24
- /// Should the local branch be deleted after the pull request was created successfully ?
24
+ /// Should the local branch be deleted after the pull request was created successfully?
25
25
/// </summary>
26
26
[ Parameter ( "Should the local branch be deleted after the pull request was created successfully ?" ) ]
27
27
bool DeleteLocalOnSuccess => TryGetValue < bool ? > ( ( ) => DeleteLocalOnSuccess ) ?? false ;
You can’t perform that action at this time.
0 commit comments