You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: scripts/create-pull-request.ps1
+7-2Lines changed: 7 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -11,15 +11,20 @@ if (($env:GeneratePullRequest -eq $False)) { # Skip CI if manually running this
11
11
12
12
$version=$env:Version
13
13
$title="Generated $version models and request builders"
14
-
$body="This pull request was automatically created by Azure Pipelines. **Important** Check for unexpected deletions or changes in this PR."
14
+
$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."
15
15
$baseBranchParameter=""
16
16
17
17
if (![string]::IsNullOrEmpty($env:BaseBranch))
18
18
{
19
19
$baseBranchParameter="-B $env:BaseBranch"# optionally pass the base branch if provided as the PR will target the default branch otherwise
20
20
}
21
21
22
-
# No need to specify reviewers as code owners should be added automatically.
22
+
# The installed application is required to have the following permissions: read/write on pull requests/
0 commit comments