Skip to content

Commit

Permalink
debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
kenodegard committed Apr 4, 2023
1 parent b3b9940 commit 1ff2e62
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions set-commit-status/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@ runs:
- uses: actions/github-script@v6
with:
script: |
console.log(context.payload.head.label);
console.log(context.payload.head.ref);
console.log(context.payload.head.repo);
console.log(context.payload.head.sha);
console.log(context.payload.head.user);
const [owner, repo] = '${{ github.repository }}'.split('/');
core.debug(`owner: ${owner}`);
core.debug(`repo: ${repo}`);
Expand Down

0 comments on commit 1ff2e62

Please sign in to comment.