Skip to content

Commit

Permalink
Remove test actor log
Browse files Browse the repository at this point in the history
  • Loading branch information
rehlma committed Apr 19, 2024
1 parent 534656c commit 2e328df
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -29307,7 +29307,6 @@ function run() {
const commentCheckboxTemplate = core.getInput('comment_checkbox');
const octokit = github.getOctokit(token);
const botName = 'github-actions[bot]';
console.log('Hey from', github.context.actor);
const pr = github.context.payload.pull_request;
if (!pr || !pr.number) {
throw new Error('Action can only be run on pull requests');
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ export async function run(): Promise<void> {

const octokit = github.getOctokit(token)
const botName = 'github-actions[bot]'
console.log('Hey from', github.context.actor)
const pr = github.context.payload.pull_request

if (!pr || !pr.number) {
Expand Down

0 comments on commit 2e328df

Please sign in to comment.