File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -34294,15 +34294,15 @@ async function generatePRComment(testRunUrlsMap) {
34294
34294
core.debug(error);
34295
34295
}
34296
34296
if (!pullRequestNumber) {
34297
- core.warning ('Unable to get pull request number for the commit, skipping comment creation');
34297
+ core.info ('Unable to get pull request number for the commit, skipping comment creation');
34298
34298
return;
34299
34299
}
34300
34300
try {
34301
34301
await createOrUpdateComment(pullRequestNumber, comment);
34302
34302
core.debug('Comment created successfully');
34303
34303
}
34304
34304
catch (error) {
34305
- core.warning ('Error creating comment on pull request');
34305
+ core.info ('Error creating comment on pull request');
34306
34306
core.debug(`Following error occurred in creating comment on pull request: ${pullRequestNumber}`);
34307
34307
core.debug(error);
34308
34308
}
Original file line number Diff line number Diff line change @@ -152,15 +152,15 @@ export async function generatePRComment(testRunUrlsMap: TestRunUrlsMap): Promise
152
152
}
153
153
154
154
if ( ! pullRequestNumber ) {
155
- core . warning ( 'Unable to get pull request number for the commit, skipping comment creation' )
155
+ core . info ( 'Unable to get pull request number for the commit, skipping comment creation' )
156
156
return ;
157
157
}
158
158
159
159
try {
160
160
await createOrUpdateComment ( pullRequestNumber , comment ) ;
161
161
core . debug ( 'Comment created successfully' ) ;
162
162
} catch ( error : any ) {
163
- core . warning ( 'Error creating comment on pull request' ) ;
163
+ core . info ( 'Error creating comment on pull request' ) ;
164
164
core . debug ( `Following error occurred in creating comment on pull request: ${ pullRequestNumber } ` ) ;
165
165
core . debug ( error ) ;
166
166
}
You can’t perform that action at this time.
0 commit comments