Skip to content

Commit

Permalink
Add missing quotes to bump version action (#1124)
Browse files Browse the repository at this point in the history
  • Loading branch information
vinistock authored Oct 19, 2023
1 parent 51593f4 commit 7659d83
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/version_bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}"
});
Expand Down

0 comments on commit 7659d83

Please sign in to comment.