File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ export type ProviderAPIClient = {
44
44
} ;
45
45
46
46
/**
47
- * PR comment from {@link ProviderAPIClient}
47
+ * PR/MR comment from {@link ProviderAPIClient}
48
48
*/
49
49
export type Comment = {
50
50
id : number ;
Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ async function runOnProject(args: {
140
140
}
141
141
142
142
logger . info (
143
- `PR detected, preparing to compare base branch ${ base . ref } to head ${ head . ref } ` ,
143
+ `PR/MR detected, preparing to compare base branch ${ base . ref } to head ${ head . ref } ` ,
144
144
) ;
145
145
146
146
const prevReport = await collectPreviousReport ( { ...args , base, ctx } ) ;
@@ -236,7 +236,7 @@ async function collectPreviousReport(args: {
236
236
logger . debug ( `Collected previous report at ${ prevReportPath } ` ) ;
237
237
238
238
await git . checkout ( [ '-f' , '-' ] ) ;
239
- logger . info ( 'Switched back to PR branch' ) ;
239
+ logger . info ( 'Switched back to PR/MR branch' ) ;
240
240
241
241
return prevReport ;
242
242
}
@@ -267,7 +267,7 @@ async function findNewIssues(args: {
267
267
logger . debug (
268
268
`Found ${ issues . length } relevant issues for ${
269
269
Object . keys ( changedFiles ) . length
270
- } changed files and created GitHub annotations `,
270
+ } changed files`,
271
271
) ;
272
272
273
273
return issues ;
You can’t perform that action at this time.
0 commit comments