File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -28899,6 +28899,7 @@ function doChecks() {
2889928899 if (github.context.eventName === "pull_request") {
2890028900 const pullPayload = github.context.payload;
2890128901 const body = pullPayload.body;
28902+ core.info(`BODY IS: ${body}`);
2890228903 if (!body) {
2890328904 core.setFailed("No PR body provided. Please ensure you include the PR template.");
2890428905 return 1;
Original file line number Diff line number Diff line change @@ -7,7 +7,9 @@ function doChecks() {
77 if ( github . context . eventName === "pull_request" ) {
88 const pullPayload = github . context . payload as PullRequest ;
99 const body : string | null = pullPayload . body ;
10-
10+
11+ core . info ( `BODY IS: ${ body } ` ) ;
12+
1113 if ( ! body ) {
1214 core . setFailed ( "No PR body provided. Please ensure you include the PR template." ) ;
1315 return 1 ;
You can’t perform that action at this time.
0 commit comments