Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion scripts/create-pull-request.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,16 @@ if (($env:GeneratePullRequest -eq $False)) { # Skip CI if manually running this
return;
}

# Special case for beta typings as it uses a non-conforming preview versioning.
if ($env:RepoName.Contains("msgraph-beta-typescript-typings"))
{
$title = "feat: generated $version models and request builders"
}
else {
$title = "Generated $version models and request builders"
}

$version = $env:Version
$title = "Generated $version models and request builders"
$body = ":bangbang:**_Important_**:bangbang: <br> Check for unexpected deletions or changes in this PR and ensure relevant CI checks are passing. <br><br> **Note:** This pull request was automatically created by Azure pipelines."
$baseBranchParameter = ""

Expand Down
Loading