File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 3636 env :
3737 OK : ${{ needs.info.outputs.ok }}
3838 run : |
39- [[ " $OK" -eq 0 ]]; then
39+ if [[ $OK -eq 0 ]]; then
4040 echo "::set-output name=msg::Only members can rebase."
4141 else
4242 echo "::set-output name=msg::Rebasing ..."
7777 uses : peter-evans/create-or-update-comment@v1
7878 with :
7979 issue-number : ${{ github.event.pull_request.number }}
80- comment-id : ${{ needs.rebase .outputs.comment-id }}
80+ comment-id : ${{ needs.comment .outputs.comment-id }}
8181 body : |
8282 Rebase complete!
8383 edit-mode : replace
9292 uses : peter-evans/create-or-update-comment@v1
9393 with :
9494 issue-number : ${{ github.event.pull_request.number }}
95- comment-id : ${{ needs.rebase .outputs.comment-id }}
95+ comment-id : ${{ needs.comment .outputs.comment-id }}
9696 body : |
97- Error rebasing.
97+ Error rebasing. Check the action logs for details.
9898 edit-mode : replace
You can’t perform that action at this time.
0 commit comments