Skip to content

Commit

Permalink
Try fixing syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
JunTaoLuo committed Jan 26, 2024
1 parent e9de8d6 commit 2e92ee1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tugboat-pr-closed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ jobs:
ref: 'main',
inputs: {
action: 'delete',
pr_number: ${{ github.event.pull_request.number }},
pr_number: '${{ github.event.pull_request.number }}',
}
});
2 changes: 1 addition & 1 deletion .github/workflows/tugboat-pr-opened.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
ref: 'main',
inputs: {
action: 'create',
pr_number: ${{ github.event.pull_request.number }},
pr_number: '${{ github.event.pull_request.number }}',
pr_title: '${{ github.event.pull_request.title }}',
}
});
2 changes: 1 addition & 1 deletion .github/workflows/tugboat-pr-updated.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ jobs:
ref: 'main',
inputs: {
action: 'rebuild',
pr_number: ${{ github.event.pull_request.number }},
pr_number: '${{ github.event.pull_request.number }}',
}
});

0 comments on commit 2e92ee1

Please sign in to comment.