Really fix PRs from bump-version for patch releases (#3631)

Actually poking around the `github` context it looks like for
workflow-dispatch-triggered-events `base_ref` is blank but `ref_name`
has the branch name we're interested in.
This commit is contained in:
Alex Crichton
2022-01-04 11:40:25 -06:00
committed by GitHub
parent 6ae9e815d5
commit d2d0396f40

View File

@@ -92,7 +92,7 @@ jobs:
--data @- << EOF
{
"head": "ci/bump-version",
"base": "${{ github.base_ref }}",
"base": "${{ github.ref_name }}",
"title": "Release Wasmtime ${{ steps.bump.outputs.version }}",
"body": $body,
"maintainer_can_modify": true