Browse Source

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.
pull/3644/head
Alex Crichton 3 years ago
committed by GitHub
parent
commit
d2d0396f40
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      .github/workflows/bump-version.yml

2
.github/workflows/bump-version.yml

@ -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

Loading…
Cancel
Save