Skip to content

Commit

Permalink
Make sure to include the v8 version in autogenerated commit and PR de…
Browse files Browse the repository at this point in the history
…scription (rogchap#205)

* Make sure to include the v8 version in autogenerated commit and PR description

* Update v8upgrade.yml

Co-authored-by: Genevieve <genlesperance@gmail.com>
  • Loading branch information
GustavoCaso and genevieve authored Oct 25, 2021
1 parent c82628d commit a8894db
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/v8upgrade.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,15 @@ jobs:
id: pr_metadata
run: |
echo ::set-output name=pr_branch::"v8_$(cat deps/v8_version)_upgrade"
echo ::set-output name=pr_commit_message::"Upgrade V8 binaries for $(cat deps/v8_version) version"
echo ::set-output name=pr_body::"Auto-generated pull request to upgrade V8 binary for $(cat deps/v8_version) version"
- name: Create PR
uses: peter-evans/create-pull-request@v3
with:
commit-message: Upgrade V8 binaries
commit-message: ${{steps.pr_metadata.outputs.pr_commit_message}}
branch: ${{steps.pr_metadata.outputs.pr_branch}}
delete-branch: true
title: Upgrade V8 binary
body: Auto-generated pull request to upgarde V8 binary
title: ${{steps.pr_metadata.outputs.pr_commit_message}}
body: ${{steps.pr_metadata.outputs.pr_body}}


0 comments on commit a8894db

Please sign in to comment.