Skip to content

Commit

Permalink
fixfix
Browse files Browse the repository at this point in the history
  • Loading branch information
oxve committed Nov 14, 2023
1 parent d77acd9 commit cbbea13
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/label-cherry-pick.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -124,10 +124,13 @@ jobs:
with:
github-token: ${{ secrets.CHERRY_PICK_TOKEN }}
script: |
console.log(github.event);
console.log(context);
console.log(context.payload);
console.log(context.payload.number);
console.log(context.repo.owner);
console.log(context.repo.repo);
if (!'${{ steps.create-pr.outputs.pull-request-number }}') {
if ('${{ steps.create-pr.outputs.pull-request-number }}' != '') {
// Comment on the originating PR if creating a cherry pick PR failed.
github.rest.issues.createComment({
issue_number: context.payload.number,
Expand Down

0 comments on commit cbbea13

Please sign in to comment.