diff --git a/.github/workflows/version_bump.yml b/.github/workflows/version_bump.yml index c27e00e6a..b4b03f66b 100644 --- a/.github/workflows/version_bump.yml +++ b/.github/workflows/version_bump.yml @@ -49,8 +49,8 @@ jobs: const response = await github.rest.pulls.create({ owner: context.repo.owner, repo: context.repo.repo, - head: automated-bump-version-${{ steps.version.outputs.VERSION }}, - base: main, + head: "automated-bump-version-${{ steps.version.outputs.VERSION }}", + base: "main", title: "Bump version to v${{ steps.version.outputs.VERSION }}" });