diff --git a/actions/signed-commits/src/__snapshots__/run.test.ts.snap b/actions/signed-commits/src/__snapshots__/run.test.ts.snap index 160de8ba..52133504 100644 --- a/actions/signed-commits/src/__snapshots__/run.test.ts.snap +++ b/actions/signed-commits/src/__snapshots__/run.test.ts.snap @@ -25,6 +25,7 @@ exports[`version creates simple PR 1`] = ` - Awesome feature ", + "draft": false, "head": "changeset-release/some-branch", "owner": "changesets", "repo": "action", @@ -43,6 +44,7 @@ exports[`version does not include any release information if a message with simp # Releases > All release information have been omitted from this message, as the content exceeds the size limit.", + "draft": false, "head": "changeset-release/some-branch", "owner": "changesets", "repo": "action", @@ -65,6 +67,7 @@ exports[`version does not include changelog entries if full message exceeds size ## simple-project-pkg-a@1.1.0 ", + "draft": false, "head": "changeset-release/some-branch", "owner": "changesets", "repo": "action", @@ -87,6 +90,7 @@ exports[`version doesn't include ignored package that got a dependency update in - Awesome feature ", + "draft": false, "head": "changeset-release/some-branch", "owner": "changesets", "repo": "action", @@ -109,6 +113,7 @@ exports[`version only includes bumped packages in the PR body 1`] = ` - Awesome feature ", + "draft": false, "head": "changeset-release/some-branch", "owner": "changesets", "repo": "action", diff --git a/actions/signed-commits/src/run.ts b/actions/signed-commits/src/run.ts index 26de3252..bb2dc23c 100644 --- a/actions/signed-commits/src/run.ts +++ b/actions/signed-commits/src/run.ts @@ -317,7 +317,7 @@ export async function runVersion({ cwd = process.cwd(), prTitle = "Version Packages", commitMessage = "Version Packages", - prDraft, + prDraft = false, labels = "", hasPublishScript = false, prBodyMaxCharacters = MAX_CHARACTERS_PER_MESSAGE,