Skip to content

Commit

Permalink
chore: fix the pr args passing
Browse files Browse the repository at this point in the history
  • Loading branch information
ci010 committed Jun 27, 2020
1 parent 7c330b0 commit 75b963b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion .github/actions/prepare-pr/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ async function main(output) {
output('title', prTitle(version));
output('body', prBody(body));
output('message', commitMessage(version));
output('release', true);
}

main(core ? core.setOutput : (k, v) => {
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/prepare-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ jobs:
uses: peter-evans/create-pull-request@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: ${{ steps.pr.outputs.commit_message }}
title: ${{ steps.pr.outputs.pr_title }}
body: ${{ steps.pr.outputs.pr_body }}
commit-message: ${{ steps.pr.outputs.message }}
title: ${{ steps.pr.outputs.title }}
body: ${{ steps.pr.outputs.body }}
reviewers: ci010
assignees: ci010
branch: prepare-release
Expand Down

0 comments on commit 75b963b

Please sign in to comment.