Skip to content

Commit

Permalink
ci(PR): clean unused logs in action message [skip-ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
clearloop committed Jan 16, 2024
1 parent 93e6daf commit f1f041b
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions .github/actions/message/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,17 +56,8 @@ async function main() {
console.log("message: ", message);
console.log("head-sha: ", sha);
console.log("title: ", title);
console.log("derive-title: ", github.context.payload.pull_request.title);
console.log("json-title: ", JSON.stringify(github.context.payload.pull_request.title));
console.log("full name: ", fullName);
console.log("api-full-name: ", github.context.payload.repository.full_name);
console.log("json-full-name: ", JSON.stringify(github.context.payload.repository.full_name));
console.log("labels: ", labels);
console.log("payload: ", github.context.payload);
console.log("pull_request: ", github.context.payload.pull_request);
console.log("json_pull_request: ", JSON.stringify(github.context.payload.pull_request));
console.log("repo: ", github.context.payload.repository);
console.log("json_repo: ", JSON.stringify(github.context.payload.repository));

// Calculate configurations.
const isDepbot = fullName === `${owner}/${repo}` && title.includes(DEPBOT);
Expand Down

0 comments on commit f1f041b

Please sign in to comment.