Skip to content

Commit

Permalink
update snapshot and add default false to prDraft param
Browse files Browse the repository at this point in the history
  • Loading branch information
momentmaker committed Apr 4, 2024
1 parent 9b07a4f commit ec75f8f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions actions/signed-commits/src/__snapshots__/run.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ exports[`version creates simple PR 1`] = `
- Awesome feature
",
"draft": false,
"head": "changeset-release/some-branch",
"owner": "changesets",
"repo": "action",
Expand All @@ -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",
Expand All @@ -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",
Expand All @@ -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",
Expand All @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion actions/signed-commits/src/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit ec75f8f

Please sign in to comment.